Skip to content

Commit

Permalink
Merge pull request #244 from xiaowen581/main
Browse files Browse the repository at this point in the history
fix: route not found when verify e-mail
  • Loading branch information
WongSaang authored Sep 7, 2023
2 parents 821c73f + e9febf5 commit 96760ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/account/verify-email.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const status = ref('')
const verifyEmail = async () => {
verifying.value = true
const { data, error } = await useFetch(`/api/account/registration/verify-email/`, {
const { data, error } = await useFetch(`/api/account/verify-email/`, {
method: 'POST',
body: JSON.stringify({
key: route.params.token
Expand Down Expand Up @@ -68,7 +68,7 @@ onNuxtReady(() => {
<v-btn
color="primary"
variant="text"
@click="navigateTo('/account/login')"
@click="navigateTo('/account/signin')"
>
Sign in
</v-btn>
Expand Down

0 comments on commit 96760ea

Please sign in to comment.