Skip to content

Commit 2378d66

Browse files
committed
fix: remove unused enum member pendingSignInEmail from StorageKey
1 parent 9c6378d commit 2378d66

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

lib/src/storage_keys.dart

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ enum StorageKey {
1515

1616
/// Key for storing a boolean flag indicating whether the user has completed
1717
/// the onboarding flow.
18-
hasSeenOnboarding,
19-
20-
/// Key for storing the email address of a user who is in the process of
21-
/// signing in, useful for pre-filling the email field.
22-
pendingSignInEmail;
18+
hasSeenOnboarding;
2319

2420
/// Returns the snake_case string representation of the key for storage.
2521
String get stringValue {
@@ -28,8 +24,6 @@ enum StorageKey {
2824
return 'auth_token';
2925
case StorageKey.hasSeenOnboarding:
3026
return 'has_seen_onboarding';
31-
case StorageKey.pendingSignInEmail:
32-
return 'pending_sign_in_email';
3327
}
3428
}
3529
}

0 commit comments

Comments
 (0)