fix(client): send body in update-stripe-card requests (#55729)

pull/55764/head
Oliver Eyton-Williams 2024-08-06 01:55:32 +02:00 committed by GitHub
parent a1c12847e4
commit 7410ed0aa7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ export function post<T = void>(
function put<T = void>(
path: string,
body?: unknown
body: unknown
): Promise<ResponseWithData<T>> {
return request('PUT', path, body);
}