corrected isphone loading

This commit is contained in:
2025-04-01 16:17:45 +02:00
parent 9f5409cc70
commit 8593720c15

View File

@@ -17,7 +17,7 @@ const supabase = useSupabaseClient()
const router = useRouter() const router = useRouter()
const route = useRoute() const route = useRoute()
const platform = useCapacitor().getIsPhone() ? "mobile" : "default" const platform = await useCapacitor().getIsPhone() ? "mobile" : "default"
const filterUser = ref(profileStore.activeProfile.id || "") const filterUser = ref(profileStore.activeProfile.id || "")