Skip to content

Commit

Permalink
Disables account name save button until a change is made (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgjohn authored Sep 27, 2024
1 parent dd0097a commit 2839f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/components/AccountSettings/AccountSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export function AccountSettings({ accountName }: Props) {
/>
<HStack>
<PillButton
isDisabled={!hasValidName}
isDisabled={!hasValidName || newName === accountName}
height="60px"
px={8}
onClick={() =>
Expand Down

0 comments on commit 2839f24

Please sign in to comment.