diff --git a/src/views/PeopleView.vue b/src/views/PeopleView.vue index 0c0d023..c07cdb6 100644 --- a/src/views/PeopleView.vue +++ b/src/views/PeopleView.vue @@ -166,7 +166,8 @@ const skippedPeople = computed(() => { onMounted(async () => { // Wait for Tauri to be ready - if (!(window as any).__TAURI__) { + const tauri = (window as any).__TAURI_INTERNALS__ || (window as any).__TAURI__ + if (!tauri) { console.error('Tauri not available - must run inside Tauri webview') loading.value = false return