diff --git a/packages/trader/src/Assets/Trading/Categories/accumulator-trade-description.tsx b/packages/trader/src/Assets/Trading/Categories/accumulator-trade-description.tsx index 20216ea80623..b3023be7d6b3 100644 --- a/packages/trader/src/Assets/Trading/Categories/accumulator-trade-description.tsx +++ b/packages/trader/src/Assets/Trading/Categories/accumulator-trade-description.tsx @@ -3,25 +3,36 @@ import { Localize } from '@deriv/translations'; import { Text } from '@deriv/components'; const AccumulatorTradeDescription = ({ onClick }: { onClick: () => void }) => { - const content = [ - 'Accumulators allow you to express a view on the range of movement of an index and grow your stake exponentially at a fixed <0>growth rate.', - 'Your <0>payout is the sum of your inital stake and profit.', - 'Your stake will continue to grow as long as the current spot price remains within a specified <0>range from the <0>previous spot price. Otherwise, you lose your stake and the trade is terminated.', - 'You can close your trade anytime. However, be aware of <0>slippage risk<0/>.', - ]; - return ( - {content.map(text => ( - - , - ]} - /> - - ))} + + growth rate.' + } + components={[]} + /> + + + payout is the sum of your inital stake and profit.'} + components={[]} + /> + + + range from the <0>previous spot price. Otherwise, you lose your stake and the trade is terminated.' + } + components={[]} + /> + + + slippage risk<0/>.'} + components={[]} + /> + ); };