Skip to content

Commit

Permalink
fix: add aria-required attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Nov 25, 2024
1 parent e80b293 commit 7ae8127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/create-guild/components/CreateGuildForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const CreateGuildForm = () => {
name="name"
render={({ field }) => (
<FormItem>
<FormLabel>Guild name</FormLabel>
<FormLabel aria-required>Guild name</FormLabel>
<FormControl>
<Input size="lg" {...field} />
</FormControl>
Expand All @@ -53,7 +53,7 @@ export const CreateGuildForm = () => {
name="contact"
render={({ field }) => (
<FormItem>
<FormLabel>E-mail address</FormLabel>
<FormLabel aria-required>E-mail address</FormLabel>
<FormControl>
<Input size="lg" {...field} />
</FormControl>
Expand Down

0 comments on commit 7ae8127

Please sign in to comment.