Skip to content

Commit

Permalink
fix: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
evavirseda committed Apr 2, 2024
1 parent a35fb60 commit 23a5349
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/desktop/views/dashboard/Sidebar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
label: localize('tabs.collectibles'),
route: DashboardRoute.Collectibles,
onClick: openCollectibles,
disabled: Boolean(!$selectedWallet?.mainAccountId),
disabled: !$selectedWallet?.mainAccountId,
},
]
: []),
Expand All @@ -49,7 +49,7 @@
label: localize('tabs.governance'),
route: DashboardRoute.Governance,
onClick: openGovernance,
disabled: Boolean(!$selectedWallet?.mainAccountId),
disabled: !$selectedWallet?.mainAccountId,
},
]
: []),
Expand All @@ -60,7 +60,7 @@
label: localize('tabs.vesting'),
route: DashboardRoute.Vesting,
onClick: openVesting,
disabled: Boolean(!$selectedWallet?.mainAccountId),
disabled: !$selectedWallet?.mainAccountId,
},
]
: []),
Expand All @@ -82,7 +82,7 @@
label: localize('tabs.delegation'),
route: DashboardRoute.Delegation,
onClick: openDelegation,
disabled: Boolean(!$selectedWallet?.mainAccountId),
disabled: !$selectedWallet?.mainAccountId,
},
]
: []),
Expand All @@ -93,7 +93,7 @@
label: localize('tabs.developer'),
route: DashboardRoute.Developer,
onClick: openDeveloper,
disabled: Boolean(!$selectedWallet?.mainAccountId),
disabled: !$selectedWallet?.mainAccountId,
},
]
: []),
Expand Down

0 comments on commit 23a5349

Please sign in to comment.