From 0282f40e189662b1b2fd2353f42a95ac8eaaf652 Mon Sep 17 00:00:00 2001 From: AdamSchinzel Date: Thu, 9 May 2024 09:22:16 +0200 Subject: [PATCH] fix(suite): remove +/- from 0 values of crypto and fiat sums in day header --- .../TransactionList/TransactionsGroup/DayHeader.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/suite/src/views/wallet/transactions/TransactionList/TransactionsGroup/DayHeader.tsx b/packages/suite/src/views/wallet/transactions/TransactionList/TransactionsGroup/DayHeader.tsx index 870b45df10c0..4d20a6182c99 100644 --- a/packages/suite/src/views/wallet/transactions/TransactionList/TransactionsGroup/DayHeader.tsx +++ b/packages/suite/src/views/wallet/transactions/TransactionList/TransactionsGroup/DayHeader.tsx @@ -98,13 +98,13 @@ export const DayHeader = ({ /> - {totalAmount.gte(0) && +} + {totalAmount.gt(0) && +} {showFiatValue && !isMissingFiatRates && ( - {totalFiatAmountPerDay.gte(0) && +} + {totalFiatAmountPerDay.gt(0) && +}