From c03f40095596e3c5a1bf60b2dfbb07bc4af2c0c4 Mon Sep 17 00:00:00 2001 From: maciek Date: Tue, 10 Oct 2023 17:22:12 +0200 Subject: [PATCH] feat: add market termination warning banner - improve wording --- .../components/market-banner/market-termination-banner.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/trading/components/market-banner/market-termination-banner.tsx b/apps/trading/components/market-banner/market-termination-banner.tsx index 78e394f55..82ea89cd3 100644 --- a/apps/trading/components/market-banner/market-termination-banner.tsx +++ b/apps/trading/components/market-banner/market-termination-banner.tsx @@ -64,12 +64,12 @@ export const MarketTerminationBanner = ({
{t( - 'This market will close to trading in %s. You will not be able to hold a position on this market after %s.', - [formattedDuration, dayMonthDate] + 'You will no longer be able to hold a position on this market when it closes in %s.', + [formattedDuration] )}{' '} {price && assetSymbol && - t('The final price will be %s %s', [ + t('The final price will be %s %s.', [ addDecimalsFormatNumber(price, market.decimalPlaces), assetSymbol, ])}