We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8625b55 commit 4fadbbbCopy full SHA for 4fadbbb
web/src/pages/Courts/CourtDetails/StakePanel/SimulatorPopup/index.tsx
@@ -269,7 +269,7 @@ const SimulatorPopup: React.FC<ISimulatorPopup> = ({ amountToStake, isStaking })
269
</StyledCurrentValue>
270
<StyledArrowRightIcon {...{ isStaking }} />
271
<StyledFutureValue>
272
- {!amountToStake || amountToStake === 0 ? "Enter amount" : null}
+ {!amountToStake || amountToStake === 0 ? "?" : null}
273
{!isUndefined(amountToStake) &&
274
amountToStake > 0 &&
275
(!isUndefined(item.futureValue) ? item.futureValue : <Skeleton width={32} />)}
0 commit comments