Skip to content

Commit

Permalink
fix(ui): 🐛 fix dialog name collision breaking generate new phrase
Browse files Browse the repository at this point in the history
  • Loading branch information
jojobyte committed Feb 11, 2024
1 parent a10e6f9 commit 9420124
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const initialState = {
rendered: null,
responsive: true,
delay: 500,
render () {},
async render () {},
addListener () {},
addListeners () {},
removeAllListeners (targets) {},
Expand Down
4 changes: 2 additions & 2 deletions src/rigs/phrase-backup.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export let phraseBackupRig = (async function (globals) {
let phraseBackup = await setupDialog(
mainApp,
{
name: 'New Wallet',
name: 'Your New Seed Phrase',
submitTxt: 'I backed up this Seed Phrase',
submitAlt: 'Confirm Seed Phrase backup',
cancelTxt: 'Cancel',
Expand All @@ -40,7 +40,7 @@ export let phraseBackupRig = (async function (globals) {
</button>
</footer>
`,
content: state => html`
content: async state => html`
${state.header(state)}
<fieldset>
Expand Down

0 comments on commit 9420124

Please sign in to comment.