diff --git a/libs/react-helpers/src/hooks/use-pane-layout.ts b/libs/react-helpers/src/hooks/use-pane-layout.ts index 529811701..41238cc95 100644 --- a/libs/react-helpers/src/hooks/use-pane-layout.ts +++ b/libs/react-helpers/src/hooks/use-pane-layout.ts @@ -30,6 +30,7 @@ interface UsePaneLayoutProps { export const usePaneLayout = ({ id }: UsePaneLayoutProps) => { const sizes = usePaneLayoutStore((store) => store.sizes[id]) || []; const valueSetter = usePaneLayoutStore((store) => store.valueSetter); + // eslint-disable-next-line react-hooks/exhaustive-deps const handleOnChange = useCallback( debounce((args) => { if (args.length) {