Skip to content

Commit

Permalink
fixed odd import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
buffet-time committed Aug 22, 2024
1 parent c25b2b6 commit b7ee5db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,3 @@ async function resend() {
@apply text-red-600;
}
</style>
import { useCurrentUser, useModalAlert, useI18n } from '#imports'; import {
useResendAccountConfirmation } from '~/composables/api';
8 changes: 4 additions & 4 deletions pages/reset-password.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
<script setup lang="ts">
import { type Ref, ref } from 'vue'
import { computed, type Ref, ref } from 'vue'
import { isPasswordValid, renderErrors } from 'lib/form_helpers'
import { toggleState } from 'lib/helpers'
import PasswordInput from 'elements/inputs/PasswordInput/PasswordInput.vue'
import BaseButton from 'elements/buttons/BaseButton/BaseButton.vue'
import { useRoute, navigateTo } from '#app'
import { definePageMeta, useModalAlert } from '#imports'
import { useChangePassword } from '~/composables/api'
definePageMeta({
middleware: 'reset-password',
Expand Down Expand Up @@ -173,6 +176,3 @@ function toggleShowPassword() {
}
}
</style>
computed, import { useRoute, navigateTo } from '#app' import { definePageMeta,
useModalAlert } from '#imports' import { useChangePassword } from
'~/composables/api'

0 comments on commit b7ee5db

Please sign in to comment.