Skip to content

Commit

Permalink
Small refactor on first time stake review page
Browse files Browse the repository at this point in the history
  • Loading branch information
AMIRKHANEF committed Jun 8, 2024
1 parent dc124ae commit ba79f6a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default function Review ({ address, balances, inputs, setRefresh, setStep
chain={chain}
label={t('Pool')}
labelPosition='center'
mode='Joining'
mode={inputs.pool.bondedPool?.state.toString() === 'Creating' ? 'Creating' : 'Joining'}
pool={inputs?.pool}
showInfo
style={{
Expand Down Expand Up @@ -137,7 +137,7 @@ export default function Review ({ address, balances, inputs, setRefresh, setStep
<Grid alignItems='center' container item sx={{ height: '42px' }}>
<ShowBalance
api={api}
balance={_extraInfo?.fee}
balance={estimatedFee}
decimalPoint={4}
/>
</Grid>
Expand Down

0 comments on commit ba79f6a

Please sign in to comment.