Skip to content

Commit

Permalink
use "Entry Price" instead of "Last Price"
Browse files Browse the repository at this point in the history
  • Loading branch information
0xlinus committed Oct 2, 2023
1 parent f242661 commit d1b780b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ const EditStopLossAndTakeProfitInput: React.FC<SLTPInputFieldProps> = memo(
label={type === 'take-profit' ? 'Take Profit' : 'Stop Loss'}
rightElement={
<StyledInputTitle>
{t('futures.market.trade.edit-sl-tp.last-price')}: <span>{formatDollars(price)}</span>
{t('futures.market.trade.edit-sl-tp.entry-price')}:{' '}
<span>{formatDollars(price)}</span>
</StyledInputTitle>
}
/>
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@
"no-tp": "No TP",
"no-sl": "No SL",
"stop-loss": "Stop Loss",
"last-price": "Last Price",
"entry-price": "Entry Price",
"estimated-profit": "Estimated Profit",
"estimated-loss": "Estimated Loss",
"warning": "This setting applies to the entire position."
Expand Down

0 comments on commit d1b780b

Please sign in to comment.