From dea34503ef61fe8f2600d2d9b0edb2eec90ebd1b Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sat, 8 Oct 2022 20:36:57 +0200 Subject: Add more eslint rules --- src/utils/misc.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/misc.tsx') 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(factory: () => Promise, fallbackValue: T | null }, []); return [state.value, state.error, state.pending]; -}; +} /** * A lazy component. The factory method is called on first render. For example useful -- cgit