Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions lib/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,7 @@ export const ExpoSecureStore: {
} = {
__esModule: true,
default: async <V extends string = StorageKeys>() => {
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<V>;
},
};
Expand Down
4 changes: 1 addition & 3 deletions lib/sessionManager/stores/expoSecureStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down