Compare commits

..

2 Commits

Author SHA1 Message Date
elpatron 73e86d28b3 chore: release v0.1.0.62 2026-05-31 13:47:49 +02:00
elpatron ad4721e694 fix: Fehler-Alert nach Push-Aktivierung korrekt awaiten
Stellt sicher, dass die Fehlermeldung angezeigt wird, bevor
promptPushAfterInviteCreated zurückkehrt.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-31 13:47:36 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
0.1.0.62
0.1.0.63
+1 -1
View File
@@ -190,7 +190,7 @@ export default function SettingsForm({ logbookId, onLogbookRestored }: SettingsF
trackPlausibleEvent(PlausibleEvents.PUSH_ENABLED)
} catch (err: unknown) {
console.error('Failed to enable push after invite:', err)
showAlert(err instanceof Error ? err.message : t('profile.push_error'))
await showAlert(err instanceof Error ? err.message : t('profile.push_error'))
}
}