From 515932d4012ab1355859b280ead69b427292caf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20G=C5=82ownia?= Date: Wed, 27 Dec 2023 19:47:19 +0100 Subject: [PATCH] fix(trading): use correct interpolation prefix in market info label (#5537) --- libs/i18n/src/locales/en/markets.json | 2 +- .../src/lib/components/market-info/market-info-panels.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/i18n/src/locales/en/markets.json b/libs/i18n/src/locales/en/markets.json index a0259f8e6..192d47afc 100644 --- a/libs/i18n/src/locales/en/markets.json +++ b/libs/i18n/src/locales/en/markets.json @@ -108,7 +108,7 @@ "The fraction of the insurance pool balance that is carried over from the parent market to the successor.": "The fraction of the insurance pool balance that is carried over from the parent market to the successor.", "The ID of the market this market succeeds.": "The ID of the market this market succeeds.", "The length of time over which open interest is measured.": "The length of time over which open interest is measured.", - "The liquidity price range is a {{{liquidityPriceRange}} difference from the mid price.": "The liquidity price range is a {{{liquidityPriceRange}} difference from the mid price.", + "The liquidity price range is a {{liquidityPriceRange}} difference from the mid price.": "The liquidity price range is a {{liquidityPriceRange}} difference from the mid price.", "The lower bound for the probability of trading calculation, used to measure liquidity available on a market to determine if LPs are meeting their commitment. This is a network parameter.": "The lower bound for the probability of trading calculation, used to measure liquidity available on a market to determine if LPs are meeting their commitment. This is a network parameter.", "The market's liquidity requirement which is derived from the maximum open interest observed over a rolling time window.": "The market's liquidity requirement which is derived from the maximum open interest observed over a rolling time window.", "The maximum amount, as a fraction, that an LP's bond can be slashed by if they fail to reach the minimum SLA. This is a network parameter.": "The maximum amount, as a fraction, that an LP's bond can be slashed by if they fail to reach the minimum SLA. This is a network parameter.", diff --git a/libs/markets/src/lib/components/market-info/market-info-panels.tsx b/libs/markets/src/lib/components/market-info/market-info-panels.tsx index 66c35a21c..ee4a049b9 100644 --- a/libs/markets/src/lib/components/market-info/market-info-panels.tsx +++ b/libs/markets/src/lib/components/market-info/market-info-panels.tsx @@ -970,7 +970,7 @@ export const LiquidityPriceRangeInfoPanel = ({ />

{t( - 'The liquidity price range is a {{{liquidityPriceRange}} difference from the mid price.', + 'The liquidity price range is a {{liquidityPriceRange}} difference from the mid price.', { liquidityPriceRange } )}