Skip to content

Commit

Permalink
fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
shayki5 committed Sep 8, 2024
1 parent cf76855 commit 3bf7fcc
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 @@ -42,7 +42,7 @@ export function transactionRow(tx: TransactionRow): SheetRow {
let abs_number = (tx.chargedAmount = Math.abs(tx.chargedAmount));
return {
date: format(parseISO(tx.date), "dd/MM/yyyy", {}),
amount: abs,
amount: abs_number,
description: tx.description,
memo: tx.memo ?? "",
category: tx.category ?? "",
Expand Down

0 comments on commit 3bf7fcc

Please sign in to comment.