diff --git a/frontend/src/hooks/index.ts b/frontend/src/hooks/index.ts index 56f50406..2247cb07 100644 --- a/frontend/src/hooks/index.ts +++ b/frontend/src/hooks/index.ts @@ -115,7 +115,7 @@ export function useDarkTheme() { export function useLoaderState( initialState = false, - delay = 500, + delay = 250, ): [boolean, (value: boolean) => void] { const [state, setState] = useState(initialState);