Skip to content

Commit

Permalink
fix: tooltip text
Browse files Browse the repository at this point in the history
  • Loading branch information
maryia-matskevich-deriv committed Oct 17, 2024
1 parent 23df5f1 commit 818f1ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const SYMBOL: TConfigItem = {
const LABEL_TRADETYPE: TConfigItem = {
type: 'label',
label: localize('Contract type'),
description: localize('Your bot will use this trade type for every run'),
description: localize('Your bot will use this contract type for every run'),
};

const TRADETYPE: TConfigItem = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,7 @@ const StrategyBlock = ({ title, items, onSelectStrategy }: TStrategyBlock) => {
</div>
{items.map((item, index) => (
<div className='strategy-template-picker__links' key={index}>
<Link
hasChevron
size='sm'
onClick={() => onSelectStrategy(item.name, title)}
>
<Link hasChevron size='sm' onClick={() => onSelectStrategy(item.name, title)}>
{item.display_name}
</Link>
</div>
Expand Down

0 comments on commit 818f1ae

Please sign in to comment.