- Removed voice input features - Simplified profile page (only legal links and logout) - Chat with AI context working - Auto-select first beneficiary - Dashboard WebView intact 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
333 B
TypeScript
16 lines
333 B
TypeScript
import { Stack } from 'expo-router';
|
|
import { AppColors } from '@/constants/theme';
|
|
|
|
export default function AuthLayout() {
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
contentStyle: { backgroundColor: AppColors.background },
|
|
}}
|
|
>
|
|
<Stack.Screen name="login" />
|
|
</Stack>
|
|
);
|
|
}
|