fix: typos, sql, some strings were odd

This commit is contained in:
Raymond
2025-07-29 15:55:38 -04:00
committed by Azalea
parent c01c40fe45
commit 92868201a3
6 changed files with 26 additions and 18 deletions

View File

@@ -164,7 +164,7 @@ async function login(user: { email: string, password: string, turnstile: string
}
async function resetPassword(user: { email: string, turnstile: string }) {
return await post('api/v2/user/reset-password', user)
return await post('/api/v2/user/reset-password', user)
}
async function changePassword(user: { token: string, password: string }) {