File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
components/transactions/components
routes/account/send/components/confirm/dialogs Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ export const TxDetailsDialog = ({
115115 </ TxDetail >
116116 < TxDetail label = { t ( 'transaction.details.fiatAtTime' ) } >
117117 < span className = { styles . fiat } >
118- { transactionInfo . amountAtTime ?. estimated == false ?
118+ { transactionInfo . amountAtTime ?. estimated === false ?
119119 < FiatConversion amount = { transactionInfo . amountAtTime } sign = { sign } noAction />
120120 :
121121 < FiatConversion noAction />
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export const ConfirmingWaitDialog = ({
4747
4848 // Reset the signProgress state every time the dialog was closed (after send/abort).
4949 const [ prevIsConfirming , setPrevIsConfirming ] = useState ( isConfirming ) ;
50- if ( prevIsConfirming != isConfirming ) {
50+ if ( prevIsConfirming !== isConfirming ) {
5151 setPrevIsConfirming ( isConfirming ) ;
5252 if ( ! isConfirming ) {
5353 setSignProgress ( undefined ) ;
You can’t perform that action at this time.
0 commit comments