Skip to content

Commit b3ce632

Browse files
committed
refactor(mobile): reorganize screens and clean up route files
1 parent 2f75859 commit b3ce632

29 files changed

+850
-968
lines changed

apps/mobile/v1/app/_layout.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ const clerkPublishableKey = process.env.EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY || '';
2323
function NavigationContent() {
2424
const theme = useTheme();
2525

26-
// Create custom navigation theme with app colors
2726
const customLightTheme = {
2827
...DefaultTheme,
2928
colors: {
@@ -114,10 +113,10 @@ export default Sentry.wrap(function RootLayout() {
114113
useEffect(() => {
115114
initializeDatabase()
116115
.then(() => {
117-
console.log('[App] SQLite database initialized - offline caching enabled');
116+
console.log('[App] SQLite database initialized - offline caching enabled');
118117
})
119118
.catch((error) => {
120-
console.error('[App] Failed to initialize SQLite database:', error);
119+
console.error('[App] Failed to initialize SQLite database:', error);
121120
});
122121
}, []);
123122

@@ -136,4 +135,4 @@ export default Sentry.wrap(function RootLayout() {
136135
</ClerkLoaded>
137136
</ClerkProvider>
138137
);
139-
});
138+
});

0 commit comments

Comments
 (0)