🐛 fix(api): Remove redundant requestType parameter in appleLoginCallback

This commit is contained in:
web@ppanel 2025-01-21 23:38:14 +07:00
parent 40a6f7ca81
commit 0aa5d5b0a9
2 changed files with 0 additions and 2 deletions

View File

@ -32,7 +32,6 @@ export async function appleLoginCallback(
return request<API.Response & { data?: any }>('/v1/auth/oauth/callback/apple', {
method: 'POST',
data: formData,
requestType: 'form',
...(options || {}),
});
}

View File

@ -32,7 +32,6 @@ export async function appleLoginCallback(
return request<API.Response & { data?: any }>('/v1/auth/oauth/callback/apple', {
method: 'POST',
data: formData,
requestType: 'form',
...(options || {}),
});
}