diff options
Diffstat (limited to 'src/utils/misc.tsx')
-rw-r--r-- | src/utils/misc.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/misc.tsx b/src/utils/misc.tsx index 989a54a..2ebf91c 100644 --- a/src/utils/misc.tsx +++ b/src/utils/misc.tsx @@ -56,7 +56,7 @@ export function useAwaiter<T>(factory: () => Promise<T>, fallbackValue: T | null }, []); return [state.value, state.error, state.pending]; -}; +} /** * A lazy component. The factory method is called on first render. For example useful |