Skip to content

Commit

Permalink
Merge pull request #191 from CityOfZion/CU-86dunnpd6-4
Browse files Browse the repository at this point in the history
CU-86dunnpd6 - NEON3 - Revamped Onboarding - Login with Ledger tab
  • Loading branch information
thiagocbalducci authored Sep 21, 2024
2 parents b57a91c + d56d9f3 commit a74dfff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const HardwareWalletConnectedBadge = () => {
if (!value) return null

return (
<p className="text-1xs text-blue py-1.5 h-min px-4 border border-blue/30 rounded-full">
<p className="text-xs text-blue py-1.5 h-min px-4 border border-blue/30 rounded-full">
{t('hardwareWalletConnectBadge')}
</p>
)
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/src/routes/pages/Wallets/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export const WalletsPage = () => {
size="md"
text={t('newWalletButtonLabel')}
onClick={modalNavigateWrapper('create-wallet-step-1')}
disabled={isPasswordLogin}
disabled={!isPasswordLogin}
/>
<IconButton
icon={<TbFileImport />}
Expand All @@ -159,7 +159,7 @@ export const WalletsPage = () => {
size="md"
text={t('exportButtonLabel')}
onClick={handleExportMnemonic}
disabled={isPasswordLogin}
disabled={!isPasswordLogin}
/>
)}

Expand All @@ -168,7 +168,7 @@ export const WalletsPage = () => {
size="md"
text={t('connectHardwareWalletButtonLabel')}
onClick={modalNavigateWrapper('connect-hardware-wallet')}
disabled={isPasswordLogin}
disabled={!isPasswordLogin}
/>
</div>
}
Expand Down

0 comments on commit a74dfff

Please sign in to comment.