From 22232fd91d1ffaa6a45ba2fce07146df61c8a79f Mon Sep 17 00:00:00 2001 From: JzoNg Date: Mon, 14 Jul 2025 13:05:18 +0800 Subject: [PATCH] fix: api address of verify email --- web/service/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/service/common.ts b/web/service/common.ts index bdb8437da4..35f2bd29e2 100644 --- a/web/service/common.ts +++ b/web/service/common.ts @@ -381,7 +381,7 @@ export const sendVerifyCode = (body: { email: string; phase: string; token?: str post('/account/change-email', { body }) export const verifyEmail = (body: { email: string; code: string; token: string }) => - post('/account/validity', { body }) + post('/account/change-email/validity', { body }) export const resetEmail = (body: { new_email: string; token: string }) => post('/account/change-email/reset', { body })