Skip to content

Commit

Permalink
fix: wording
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoulaud committed Oct 7, 2024
1 parent cbbf542 commit e053422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/(authenticated)/strategies/StrategyCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ const ConditionBadge: React.FC<{ condition: BuyCondition | SellCondition }> = ({
return `${condition.days} day${condition.days !== 1 ? 's' : ''}`;
}
if (isBlacklistCondition(condition)) {
return `${condition.checkDollarSign ? '$' : ''}${
condition.checkBlacklist ? ' and scam names' : ''
return `${condition.checkDollarSign ? '$ ' : ''}${
condition.checkBlacklist ? 'scam names' : ''
}`;
}
if ('value' in condition) {
Expand Down

0 comments on commit e053422

Please sign in to comment.