Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
devchenyan committed Jul 1, 2024
1 parent 0b27748 commit 5a7dbc9
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ const ImportFailureDialog = ({ show, onClose }: { show: boolean; onClose: () =>
}, [])

return (
<Dialog show={show} title={t('import-keystore.import-failure')} onConfirm={onClose} showCancel={false}>
<Dialog
show={show}
title={t('import-keystore.import-failure')}
onCancel={onClose}
onConfirm={onClose}
showCancel={false}
>
<div className={styles.container}>
<p className={styles.content}>
{t('import-keystore.import-failure-msg')}
Expand Down

1 comment on commit 5a7dbc9

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 9737309416

Please sign in to comment.