This commit is contained in:
ch4insmoker 2025-05-07 22:08:53 +05:30 committed by GitHub
commit 61646d095e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -158,6 +158,7 @@ export async function deleteUser(
account: AccountWithToken,
): Promise<UserResponse> {
return ofetch<UserResponse>(`/users/${account.userId}`, {
method: "DELETE",
headers: getAuthHeaders(account.token),
baseURL: url,
});