This commit is contained in:
27942
2026-01-29 10:19:27 +08:00
parent 6262a67f46
commit e8b8507dca
6 changed files with 20 additions and 15 deletions

View File

@@ -71,7 +71,7 @@ async function refreshAccessToken() {
}
if (!refreshPromise) {
refreshPromise = refreshApi
.post<{ access_token: string; refresh_token: string; token_type: string }>(
.post<{ access_token: string, refresh_token: string, token_type: string }>(
"/auth/refresh",
{ refresh_token: token }
)