diff options
author | Eric Bailey <git@esb.lol> | 2024-09-06 11:22:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 11:22:29 -0500 |
commit | bdff8752fbae6f3c5e485e39178793c1e14a3982 (patch) | |
tree | 8ffea8909f470370ab7880094fc8db6fa224e580 /src | |
parent | a1969faf8e4f95bca5c5e86fc1a6630a9df8a29b (diff) | |
download | voidsky-bdff8752fbae6f3c5e485e39178793c1e14a3982.tar.zst |
Add support for autofill of one-time-code for email verification (#5186)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/modals/VerifyEmail.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/modals/VerifyEmail.tsx b/src/view/com/modals/VerifyEmail.tsx index 7c1146a01..8fdec7d5d 100644 --- a/src/view/com/modals/VerifyEmail.tsx +++ b/src/view/com/modals/VerifyEmail.tsx @@ -173,7 +173,7 @@ export function Component({ accessibilityLabel={_(msg`Confirmation code`)} accessibilityHint="" autoCapitalize="none" - autoComplete="off" + autoComplete="one-time-code" autoCorrect={false} /> ) : undefined} |