We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83455be commit 3fd7031Copy full SHA for 3fd7031
demos/django-react-native-todolist/app/views/signout.tsx
@@ -5,12 +5,11 @@ import { router } from 'expo-router';
5
import { useSystem } from '../../library/stores/system';
6
7
export default function Signout() {
8
- const { powersync, supabaseConnector } = useSystem();
+ const { powersync } = useSystem();
9
10
React.useEffect(() => {
11
(async () => {
12
await powersync.disconnectAndClear();
13
- await supabaseConnector.supabaseClient.auth.signOut();
14
router.replace('signin');
15
})();
16
}, []);
0 commit comments