1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-22 21:21:35 +01:00

Use continue method unanimously

This commit is contained in:
Alec Rippberger 2024-10-18 16:35:33 -05:00
parent 9ef1e3ce39
commit 493fbc0f32
No known key found for this signature in database
GPG Key ID: 9DD8DA583B28154A

View File

@ -21,7 +21,7 @@
bitInput
appAutofocus
(blur)="onEmailBlur($event)"
(keyup.enter)="clientType === ClientType.Desktop ? continue() : validateEmail()"
(keyup.enter)="continue()"
/>
</bit-form-field>
@ -33,7 +33,7 @@
<div class="tw-grid tw-gap-3">
<!-- Continue button -->
<button type="button" bitButton block buttonType="primary" (click)="validateEmail()">
<button type="button" bitButton block buttonType="primary" (click)="continue()">
{{ "continue" | i18n }}
</button>