added logout button to guided setup screens

This commit is contained in:
Chris Sanden
2026-05-06 20:32:19 +02:00
parent 419463e5be
commit e18fc525cf
2 changed files with 10 additions and 30 deletions

View File

@@ -250,6 +250,16 @@ export default function SetupScreen() {
options={{
title: 'Guided Setup',
headerTitleAlign: 'center',
headerRight: () => (
<Pressable
className="rounded-full bg-app-subtle px-4 py-2"
onPress={async () => await supabase.auth.signOut()}
>
<Text className="text-sm font-semibold text-text-secondary">
Logout
</Text>
</Pressable>
),
}}
/>