Removed unnecessary question mark

This commit is contained in:
Bart Koppelmans 2021-09-16 10:04:26 +02:00 committed by Olivier Gagnon
parent 5866f47151
commit 867dd3ba91

@ -81,7 +81,7 @@ export class CovenantSleeveMemoryUpgrade extends React.Component<IProps, IState>
if (isNaN(this.state.amt)) { if (isNaN(this.state.amt)) {
purchaseBtnContent = <>Invalid value</>; purchaseBtnContent = <>Invalid value</>;
} else if (this.state.amt > maxMemory) { } else if (this.state.amt > maxMemory) {
purchaseBtnContent = <>Memory cannot exceed 100?</>; purchaseBtnContent = <>Memory cannot exceed 100</>;
} else { } else {
purchaseBtnContent = ( purchaseBtnContent = (
<> <>