We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0462fcb commit 9597534Copy full SHA for 9597534
src/Select.tsx
@@ -79,9 +79,8 @@ export const Select = memo(
79
return "fr-select-group--error";
80
case "success":
81
return "fr-select-group--valid";
82
- case "info":
83
- return "fr-select-group--info";
84
case "default":
+ case "info":
85
return undefined;
86
}
87
assert<Equals<typeof state, never>>(false);
src/shared/Fieldset.tsx
@@ -116,13 +116,12 @@ export const Fieldset = memo(
116
(() => {
117
switch (state) {
118
119
120
121
case "error":
122
return "fr-fieldset--error";
123
124
return "fr-fieldset--valid";
125
- return "fr-fieldset--info";
126
127
})()
128
),
0 commit comments