Trying to fix some whack ass bugs

This commit is contained in:
2025-09-17 16:08:28 -05:00
parent 92854382db
commit d4842fdacd
7 changed files with 45 additions and 62 deletions

View File

@@ -27,16 +27,18 @@ const RootLayout = () => {
const colorScheme = useColorScheme();
return (
<ThemeProvider value={colorScheme === 'dark' ? DarkTheme : DefaultTheme}>
<Stack>
<Stack.Screen name='(tabs)' options={{ headerShown: false }} />
<Stack.Screen
name='modal'
options={{ presentation: 'modal', title: 'Modal' }}
/>
</Stack>
<StatusBar style='auto' />
</ThemeProvider>
<ConvexProvider client={convex}>
<ThemeProvider value={colorScheme === 'dark' ? DarkTheme : DefaultTheme}>
<Stack>
<Stack.Screen name='(tabs)' options={{ headerShown: false }} />
<Stack.Screen
name='modal'
options={{ presentation: 'modal', title: 'Modal' }}
/>
</Stack>
<StatusBar style='auto' />
</ThemeProvider>
</ConvexProvider>
);
};
export default Sentry.wrap(RootLayout);