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

This commit is contained in:
Oliver Eyton-Williams
2024-08-06 01:55:32 +02:00
committed by GitHub
parent a1c12847e4
commit 7410ed0aa7

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);
}