mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-04 06:39:02 +02:00
Fix instances of ...rest filtering
GitOrigin-RevId: 9f2889b08ffed20466d7022a5aba69d3e87c5ed9
This commit is contained in:
@@ -89,7 +89,7 @@ export const ThreadsProvider: FC<React.PropsWithChildren> = ({ children }) => {
|
||||
) => {
|
||||
setData(value => {
|
||||
if (value) {
|
||||
const { submitting, ...thread } = value[threadId] ?? {
|
||||
const { submitting: _1, ...thread } = value[threadId] ?? {
|
||||
messages: [],
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -29,7 +29,7 @@ const DropdownToggleWithTooltip = forwardRef<
|
||||
toolTipDescription,
|
||||
overlayTriggerProps,
|
||||
tooltipProps,
|
||||
id,
|
||||
id: _id,
|
||||
...toggleProps
|
||||
},
|
||||
ref
|
||||
|
||||
@@ -69,7 +69,7 @@ const ContactUsModalWithAcknowledgement = (
|
||||
}
|
||||
|
||||
export const WithAcknowledgement = (args: ContactUsModalProps) => {
|
||||
const { show, handleHide, ...rest } = args
|
||||
const { show: _show, handleHide: _handleHide, ...rest } = args
|
||||
return <ContactUsModalWithAcknowledgement {...rest} />
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user