We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
useEffect
1 parent cb1bc5c commit bc48f2aCopy full SHA for bc48f2a
src/components/path/index.tsx
@@ -59,6 +59,7 @@ export const CodePath: FC = () => {
59
60
useEffect(() => {
61
fetchCodePath();
62
+ // eslint-disable-next-line react-hooks/exhaustive-deps -- we want to fetch code path once on mount, afterwards the "useDebouncedEffect" takes over
63
}, []);
64
65
useDebouncedEffect(
0 commit comments