Fix instances of ...rest filtering

GitOrigin-RevId: 9f2889b08ffed20466d7022a5aba69d3e87c5ed9
This commit is contained in:
andrew rumble
2024-09-13 15:18:49 +01:00
committed by Copybot
parent 542008c61d
commit eb60d364f6
3 changed files with 3 additions and 3 deletions
@@ -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: [],
}
@@ -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} />
}