From 5d5aa1f9d5be224e0ba47d64decc58105bd459eb Mon Sep 17 00:00:00 2001 From: Ralf Kistner Date: Mon, 18 Mar 2024 13:40:24 +0200 Subject: [PATCH] Revert SystemProvider changes. --- .../src/components/providers/SystemProvider.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/demos/react-supabase-todolist/src/components/providers/SystemProvider.tsx b/demos/react-supabase-todolist/src/components/providers/SystemProvider.tsx index 5b38db5d..dda360cc 100644 --- a/demos/react-supabase-todolist/src/components/providers/SystemProvider.tsx +++ b/demos/react-supabase-todolist/src/components/providers/SystemProvider.tsx @@ -42,7 +42,7 @@ export const SystemProvider = ({ children }: { children: React.ReactNode }) => { }, [powerSync, connector]); return ( - }> + }> @@ -54,8 +54,4 @@ export const SystemProvider = ({ children }: { children: React.ReactNode }) => { ); }; -function Fallback() { - return ; -} - export default SystemProvider;