Skip to content

Commit f9c78ca

Browse files
committed
chore: remove max ticks from contract details section
1 parent 110c2b2 commit f9c78ca

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/trader/src/App/Components/Elements/ContractAudit/contract-details.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,7 @@ const ContractDetails = ({
8181
const show_payout_per_point = isTurbosContract(contract_type) || is_vanilla;
8282
const ticks_label = Number(tick_count) < 2 ? localize('tick') : localize('ticks');
8383
const show_strike_barrier = is_vanilla || isAsiansContract(contract_type) || isResetContract(contract_type);
84-
const ticks_duration_text = isAccumulatorContract(contract_type)
85-
? `${tick_passed}/${tick_count} ${localize('ticks')}`
86-
: `${tick_count} ${ticks_label}`;
84+
const ticks_duration_text = `${tick_count} ${ticks_label}`;
8785

8886
const INDICATIVE_HIGH = 'H';
8987
const INDICATIVE_LOW = 'L';

0 commit comments

Comments
 (0)