Skip to content

Commit

Permalink
fix: lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
portikM committed Mar 12, 2024
1 parent 21fa761 commit b83f662
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/ForgotPasswordForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
</div>
<div v-else-if="currentState.matches('success')">
<KAlert
:message="successText"
appearance="info"
class="form-error"
data-testid="kong-auth-forgot-password-success-message"
:message="successText"
/>
<KButton
appearance="primary"
Expand Down
6 changes: 3 additions & 3 deletions src/components/LoginForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,28 +41,28 @@

<div v-else-if="currentState.matches('reset_password')" class="form-error">
<KAlert
:message="messages.login.passwordResetSuccess"
appearance="success"
class="justify-content-center"
data-testid="kong-auth-login-password-reset-message"
:message="messages.login.passwordResetSuccess"
/>
</div>

<div v-else-if="currentState.matches('confirmed_email')" class="form-error">
<KAlert
:message="messages.login.confirmedEmailSuccess"
appearance="success"
class="justify-content-center"
data-testid="kong-auth-login-confirmed-email-message"
:message="messages.login.confirmedEmailSuccess"
/>
</div>

<div v-else-if="currentState.matches('from_register')" class="form-error">
<KAlert
:alrt-message="registerSuccessText"
appearance="success"
class="justify-content-center"
data-testid="kong-auth-login-register-success-message"
:message="registerSuccessText"
/>
</div>

Expand Down

0 comments on commit b83f662

Please sign in to comment.