fix: email banner bug (#628)
This commit is contained in:
@@ -42,7 +42,7 @@ export const get = (...args) => getAuthenticatedHttpClient().get(...args);
|
||||
* @param {string} url - target url
|
||||
* @param {object|string} body - post payload
|
||||
*/
|
||||
export const post = (url, body) => getAuthenticatedHttpClient().post(url, stringify(body));
|
||||
export const post = (url, body = {}) => getAuthenticatedHttpClient().post(url, stringify(body));
|
||||
|
||||
export const client = getAuthenticatedHttpClient;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user