style edit task screen and fix task update flow

This commit is contained in:
Fhj0607
2026-04-21 12:56:24 +02:00
parent 473ba75e3e
commit 5bde373514
4 changed files with 330 additions and 103 deletions

View File

@@ -5,6 +5,14 @@ import 'react-native-url-polyfill/auto';
const supabaseUrl = process.env.EXPO_PUBLIC_SUPABASE_URL!
const supabaseKey = process.env.EXPO_PUBLIC_SUPABASE_PUBLISHABLE_KEY!
if (!supabaseUrl) {
throw new Error('Missing EXPO_PUBLIC_SUPABASE_URL');
}
if (!supabaseKey) {
throw new Error('Missing EXPO_PUBLIC_SUPABASE_PUBLISHABLE_KEY');
}
const SecureStoreAdapter = {
getItem: async (key: string) => {
return await SecureStore.getItemAsync(key);