From 9134b3c14c07017764ccf8bf3343d2fff8dab07a Mon Sep 17 00:00:00 2001 From: "Leon.Schmidt" Date: Sat, 8 Aug 2026 18:53:26 +0200 Subject: [PATCH] ADD - define garage app identity --- frontend/src/types/apps.ts | 1 + frontend/src/utils/preferences.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/src/types/apps.ts b/frontend/src/types/apps.ts index b8f8ed6..fc9c11a 100644 --- a/frontend/src/types/apps.ts +++ b/frontend/src/types/apps.ts @@ -10,6 +10,7 @@ export type PhoneAppId = | 'calendar' | 'weather' | 'banking' + | 'garage' | 'mail' | 'map' | 'notes' diff --git a/frontend/src/utils/preferences.ts b/frontend/src/utils/preferences.ts index ddc256a..2118a05 100644 --- a/frontend/src/utils/preferences.ts +++ b/frontend/src/utils/preferences.ts @@ -73,6 +73,7 @@ const DEFAULT_APP_NOTIFICATIONS: Record< calendar: { enabled: true, sounds: true }, weather: { enabled: true, sounds: true }, banking: { enabled: true, sounds: true }, + garage: { enabled: true, sounds: true }, mail: { enabled: true, sounds: true }, map: { enabled: true, sounds: true }, notes: { enabled: true, sounds: true },