Skip to content

Commit

Permalink
fix: disable unlock wallet button
Browse files Browse the repository at this point in the history
  • Loading branch information
greatertomi committed Apr 30, 2024
1 parent 77783b1 commit 8b2baa0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const LockWallet = (): React.ReactElement => {
};

return (
<Menu.Item data-testid="header-menu-lock" onClick={handleLockWallet} className={styles.menuItem}>
<Menu.Item data-testid="header-menu-lock" onClick={handleLockWallet} className={styles.menuItem} disabled>
{t('browserView.topNavigationBar.links.lockWallet')}
</Menu.Item>
);
Expand Down

0 comments on commit 8b2baa0

Please sign in to comment.