Skip to content

Commit 80d76c4

Browse files
committed
fix: return null when item doesn't exist from expo store
1 parent 7245aaa commit 80d76c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sessionManager/stores/expoSecureStore.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export class ExpoSecureStore<V = StorageKeys> implements SessionManager<V> {
9494
);
9595
}
9696

97-
return chunks.join("");
97+
return chunks.join("") || null;
9898
}
9999

100100
/**

0 commit comments

Comments
 (0)