diff --git a/lib/main.ts b/lib/main.ts index f774b473..7afed9ba 100644 --- a/lib/main.ts +++ b/lib/main.ts @@ -95,9 +95,7 @@ export const ExpoSecureStore: { } = { __esModule: true, default: async () => { - const mod = await import( - /* webpackIgnore: true */ "./sessionManager/stores/expoSecureStore.js" - ); + const mod = await import("./sessionManager/stores/expoSecureStore.js"); return mod.ExpoSecureStore as typeof mod.ExpoSecureStore; }, }; diff --git a/lib/sessionManager/stores/expoSecureStore.ts b/lib/sessionManager/stores/expoSecureStore.ts index 0c195e0e..0e11022b 100644 --- a/lib/sessionManager/stores/expoSecureStore.ts +++ b/lib/sessionManager/stores/expoSecureStore.ts @@ -27,9 +27,7 @@ export class ExpoSecureStore< private async loadExpoStore() { try { - expoSecureStore = await import( - /* webpackIgnore: true */ "expo-secure-store" - ); + expoSecureStore = await import("expo-secure-store"); } catch (error) { console.error("Error loading dependency expo storage:", error); }