Skip to content

Commit

Permalink
Merge pull request #67 from nightly-labs/connect-add-install-status
Browse files Browse the repository at this point in the history
add install
  • Loading branch information
jandutkiewicz0309 authored Sep 29, 2023
2 parents 59cd18c + 3cb07ba commit c6d0f49
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class NightlyWalletSelectorPage extends LitElement {
<nightly-wallet-selector-item
name=${item.name}
icon=${item.icon}
status=${item.recent ? 'Recent' : item.detected ? 'Detected' : ''}
status=${item.recent ? 'Recent' : item.detected ? 'Detected' : 'Install'}
@click=${() => this.onWalletClick(item.name)}
></nightly-wallet-selector-item>
`
Expand All @@ -77,7 +77,7 @@ export class NightlyWalletSelectorPage extends LitElement {
<nightly-wallet-selector-item
name=${item.name}
icon=${item.icon}
status=${item.recent ? 'Recent' : item.detected ? 'Detected' : ''}
status=${item.recent ? 'Recent' : item.detected ? 'Detected' : 'Install'}
@click=${() => this.onWalletClick(item.name)}
></nightly-wallet-selector-item>
`
Expand Down

0 comments on commit c6d0f49

Please sign in to comment.