Skip to content

Commit 4fadbbb

Browse files
committed
chore: change enter amount for ?
1 parent 8625b55 commit 4fadbbb

File tree

1 file changed

+1
-1
lines changed
  • web/src/pages/Courts/CourtDetails/StakePanel/SimulatorPopup

1 file changed

+1
-1
lines changed

web/src/pages/Courts/CourtDetails/StakePanel/SimulatorPopup/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ const SimulatorPopup: React.FC<ISimulatorPopup> = ({ amountToStake, isStaking })
269269
</StyledCurrentValue>
270270
<StyledArrowRightIcon {...{ isStaking }} />
271271
<StyledFutureValue>
272-
{!amountToStake || amountToStake === 0 ? "Enter amount" : null}
272+
{!amountToStake || amountToStake === 0 ? "?" : null}
273273
{!isUndefined(amountToStake) &&
274274
amountToStake > 0 &&
275275
(!isUndefined(item.futureValue) ? item.futureValue : <Skeleton width={32} />)}

0 commit comments

Comments
 (0)