Skip to content

Commit

Permalink
fix: Show Error message (#2842)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanguoyu authored Sep 18, 2023
1 parent c7009d8 commit 9d14ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/components/HardwareSign/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ const HardwareSign = ({
})

if (error) {
return <AlertDialog show message={error} type="failed" onCancel={onCancel} />
return <AlertDialog show message={errorFormatter(error, t)} type="failed" onCancel={onCancel} />
}

return (
Expand Down

2 comments on commit 9d14ac6

@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 6220588744

@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 6220588809

Please sign in to comment.