switching secure store to this device only

This commit is contained in:
Blake Kaufman
2026-07-22 19:30:20 -04:00
parent 05d5db16da
commit 01e3c2e0a3
+2 -2
View File
@@ -12,7 +12,7 @@ import {
} from '../constants';
import { BIOMETRIC_KEY } from '../constants';
import {
AFTER_FIRST_UNLOCK,
AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY,
deleteItemAsync,
getItemAsync,
setItemAsync,
@@ -23,7 +23,7 @@ export const SECURE_MIGRATION_V2_FLAG = 'secureStoreMigrationV2Complete';
const KEYCHAIN_OPTION = {
keychainService: keychainService,
keychainAccessible: AFTER_FIRST_UNLOCK,
keychainAccessible: AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY,
};
async function storeData(key, value, options = {}) {