Skip to content

Commit 8687ce1

Browse files
authored
prettierify
1 parent fe221cb commit 8687ce1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

source/lib/financials/balances.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ async function fetchBalancesFromServer(): Promise<BalancesOrErrorType> {
6060
username: username,
6161
password: password,
6262
})
63-
let loginResponse = await fetch(OLECARD_AUTH_URL, {method: 'POST', body: form})
63+
let loginResponse = await fetch(OLECARD_AUTH_URL, {
64+
method: 'POST',
65+
body: form,
66+
})
6467

6568
if (loginResponse.url.includes('message=')) {
6669
return {error: true, value: new Error('login failed!')}

0 commit comments

Comments
 (0)