Skip to content

Commit

Permalink
#349: small secure storage fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jorre127 committed Oct 10, 2024
1 parent 2187ca4 commit 4770987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/repository/secure_storage/secure_storage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ abstract class SecureStorage implements SimpleKeyValueStorage {
class _SecureStorage implements SecureStorage {
final FlutterSecureStorage _storage;

final iOSOptions = const IOSOptions(accessibility: KeychainAccessibility.unlocked);
final iOSOptions = const IOSOptions(accessibility: KeychainAccessibility.first_unlock);

_SecureStorage(this._storage);

Expand Down

0 comments on commit 4770987

Please sign in to comment.