Skip to content

Commit

Permalink
Prettier applied.
Browse files Browse the repository at this point in the history
  • Loading branch information
fvlvte committed Nov 21, 2023
1 parent 713a12c commit 9e0efac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/HttpUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function processHTTPRequest(url: string, method: RequestType = 'get', body: Form
function xhr(command: string, data: Record<string, unknown>, type: RequestType = CONST.NETWORK.METHOD.POST, shouldUseSecure = false): Promise<Response> {
const formData = new FormData();
Object.keys(data).forEach((key) => {
if (typeof data[key] === "undefined") {
if (typeof data[key] === 'undefined') {
return;
}
formData.append(key, data[key] as string | Blob);
Expand Down

0 comments on commit 9e0efac

Please sign in to comment.