Skip to content

Commit fbb2c2c

Browse files
refactor(tailwind/RadioGroup): enable invalid styling
1 parent 3f8fe9e commit fbb2c2c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

tailwind/ui/__stories__/RadioGroup.stories.tsx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,12 @@ const radioSet: Array<RadioGroupItemProps & { label: string }> = [
4040
checked: true,
4141
label: "disabled-checked",
4242
},
43-
44-
// TODO: Waiting for PR #13434 to be merged
45-
// {
46-
// id: "invalid",
47-
// value: "invalid",
48-
// "aria-invalid": true,
49-
// label: "invalid",
50-
// },
43+
{
44+
id: "invalid",
45+
value: "invalid",
46+
"aria-invalid": true,
47+
label: "invalid",
48+
},
5149
]
5250

5351
export const Radio: StoryObj<typeof meta> = {

0 commit comments

Comments
 (0)