Skip to content

Commit fc576bf

Browse files
Update index.js
1 parent 0df6efc commit fc576bf

File tree

1 file changed

+2
-2
lines changed
  • src/containers/Tokens/TransparentTransferDialog

1 file changed

+2
-2
lines changed

src/containers/Tokens/TransparentTransferDialog/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class TransparentTransferDialog extends React.Component {
7878
txs.token = this.props.feeOption?.fees?.token;
7979
const tokenGasPrice = this.props.gasPrice.find((val) => val.token === this.props.feeOption?.fees?.token);
8080
txs.feeAmount = new BigNumber(tokenGasPrice?.minDenomAmount);
81-
if (props.feeOption?.fees?.token === config.TOKEN_ADDRESS) {
81+
if (this.props.feeOption?.fees?.token === config.TOKEN_ADDRESS) {
8282
txs.feeAmount = new BigNumber(0.000001);
8383
}
8484
}
@@ -302,4 +302,4 @@ const actionToProps = {
302302
showTokensTransactionSuccessDialog,
303303
};
304304

305-
export default withRouter(connect(stateToProps, actionToProps)(TransparentTransferDialog));
305+
export default withRouter(connect(stateToProps, actionToProps)(TransparentTransferDialog));

0 commit comments

Comments
 (0)