Skip to content

Commit

Permalink
Merge pull request #978 from singnet/ui-fix
Browse files Browse the repository at this point in the history
Payment modal fix
  • Loading branch information
MarinaFedy authored Jan 29, 2025
2 parents af76435 + 3c0312c commit 51cf55e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,10 @@ const PaymentPopup = ({ classes, isVisible, handleClose, paymentModalType }) =>

const progressBarDataByType = progressBarData[paymentModalType];

if (!paymentModalType) {
return null;
}

return (
<SNETDialog isDialogOpen={isVisible} onDialogClose={handleCancel} showCloseButton={true} title={title}>
<div className={classes.paymentPopupContainer}>
Expand Down

0 comments on commit 51cf55e

Please sign in to comment.