Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
shayki5 committed Oct 1, 2023
1 parent 3e2ff69 commit 5fa2bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/sheets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export class GoogleSheetsStorage implements TransactionStorage {
}

private transactionRow(tx: TransactionRow): SheetRow {
let abs = tx.chargedAmount = Math.abs(tx.chargedAmount);
let abs = (tx.chargedAmount = Math.abs(tx.chargedAmount));
return {
date: format(parseISO(tx.date), "dd/MM/yyyy", {}),
amount: abs,
Expand Down

0 comments on commit 5fa2bf9

Please sign in to comment.