fix: Update import statement for Capacitor local notifications module ID

This commit is contained in:
2026-05-17 16:48:34 +10:00
parent 62876edd77
commit 40dc552c8d

View File

@@ -119,6 +119,8 @@ let notificationTapCallback: ((path: string) => void) | null = null;
const ANDROID_NOTIFICATION_SMALL_ICON = 'ic_stat_paarrot'; const ANDROID_NOTIFICATION_SMALL_ICON = 'ic_stat_paarrot';
const ANDROID_NOTIFICATION_ICON_COLOR = '#FF8A00'; const ANDROID_NOTIFICATION_ICON_COLOR = '#FF8A00';
const CAPACITOR_LOCAL_NOTIFICATIONS_MODULE_ID = '@capacitor/local-notifications';
type CapacitorLocalNotificationsModule = typeof import('@capacitor/local-notifications'); type CapacitorLocalNotificationsModule = typeof import('@capacitor/local-notifications');
/** /**
@@ -126,7 +128,7 @@ type CapacitorLocalNotificationsModule = typeof import('@capacitor/local-notific
* Vite must not pre-resolve this module because some desktop builds do not include it. * Vite must not pre-resolve this module because some desktop builds do not include it.
*/ */
const importCapacitorLocalNotifications = async (): Promise<CapacitorLocalNotificationsModule> => const importCapacitorLocalNotifications = async (): Promise<CapacitorLocalNotificationsModule> =>
import(/* @vite-ignore */ '@capacitor/local-notifications'); import(/* @vite-ignore */ CAPACITOR_LOCAL_NOTIFICATIONS_MODULE_ID);
/** /**
* Bring the Tauri window to the front and focus it * Bring the Tauri window to the front and focus it