Skip to content

Commit 84207c5

Browse files
authored
do not allow empty account name when updating an account name (#233)
1 parent 49f95d3 commit 84207c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

renderer/components/AccountSettings/AccountSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export function AccountSettings({ accountName }: Props) {
8888
/>
8989
<HStack>
9090
<PillButton
91-
isDisabled={false}
91+
isDisabled={!hasValidName}
9292
height="60px"
9393
px={8}
9494
onClick={() =>

0 commit comments

Comments
 (0)