diff --git a/packages/suite/src/views/wallet/transactions/components/TransactionSummary.tsx b/packages/suite/src/views/wallet/transactions/components/TransactionSummary.tsx index e2a48bd631e..e6fd95209e9 100644 --- a/packages/suite/src/views/wallet/transactions/components/TransactionSummary.tsx +++ b/packages/suite/src/views/wallet/transactions/components/TransactionSummary.tsx @@ -2,6 +2,7 @@ import { getUnixTime } from 'date-fns'; import styled from 'styled-components'; import { calcTicks, calcTicksFromData } from '@suite-common/suite-utils'; +import { areNetworkTransactionsUnreliable } from '@suite-common/wallet-config'; import { Button, Card, Column, Row, variables } from '@trezor/components'; import { getGraphDataForInterval, updateGraphData } from 'src/actions/wallet/graphActions'; @@ -137,14 +138,16 @@ export const TransactionSummary = ({ account }: TransactionSummaryProps) => { )} - + {!areNetworkTransactionsUnreliable(account.symbol) && ( + + )} ); };