Skip to content

Commit

Permalink
Small refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
seanh committed Jul 10, 2024
1 parent 2eed560 commit 4b867f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions h/static/scripts/group-forms/components/CreateGroupForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ export default function CreateGroupForm() {

<form>
<div className="mb-4">
<Label htmlFor={nameId} text={'Name'} required />
<Label htmlFor={nameId} text="Name" required />
<Input id={nameId} autofocus autocomplete="off" required />
<CharacterCounter value={0} limit={25} />
</div>

<div className="mb-4">
<Label htmlFor={descriptionId} text={'Description'} />
<Label htmlFor={descriptionId} text="Description" />
<Textarea id={descriptionId} classes="h-24" />
<CharacterCounter value={0} limit={250} />
</div>
Expand Down

0 comments on commit 4b867f7

Please sign in to comment.