diff --git a/app/actions/get-trasactions.tsx b/app/actions/get-trasactions.tsx index 0436354..e5da135 100644 --- a/app/actions/get-trasactions.tsx +++ b/app/actions/get-trasactions.tsx @@ -68,7 +68,7 @@ export const getTransactions = async (): Promise => { ...etfTxs.map((e) => ({ id: e.id.toString(), rawType: e.transactionType, - amount: e.price.toNumber(), + amount: e.price.toNumber() * e.quantity.toNumber(), at: e.transactionAt, label: e.etf.issueNameKo ?? 'ETF', })),