Skip to content

Commit

Permalink
fix: #169 account description becomes name
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed Oct 21, 2023
1 parent 1cf5e70 commit 03ae664
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export const AccountInfo: React.FC<Props> = ({ groupId, accountId }) => {
name="description"
error={!!validationErrors.fieldErrors.description}
helperText={validationErrors.fieldErrors.description}
onChange={(value) => pushChanges({ name: value })}
onChange={(value) => pushChanges({ description: value })}
value={account.description}
disabled={!account.isWip}
/>
Expand Down

0 comments on commit 03ae664

Please sign in to comment.