Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/large-cars-repeat.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
---
"@primer/react": patch
---

Move Radio component css module feature flag to ga
4 changes: 2 additions & 2 deletions packages/react/src/Radio/Radio.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -48,7 +48,7 @@ export type RadioProps = {
SxProp

const StyledRadio = toggleStyledComponent(
'primer_react_css_modules_staff',
'primer_react_css_modules_ga',
'input',
styled.input`
${sharedCheckboxAndRadioStyles};
Expand DownExpand Up@@ -103,7 +103,7 @@ const Radio = React.forwardRef<HTMLInputElement, RadioProps>(
ref,
): ReactElement => {
const radioGroupContext = useContext(RadioGroupContext)
const enabled = useFeatureFlag('primer_react_css_modules_staff')
const enabled = useFeatureFlag('primer_react_css_modules_ga')
const handleOnChange: ChangeEventHandler<HTMLInputElement> = e => {
radioGroupContext?.onChange && radioGroupContext.onChange(e)
onChange && onChange(e)
Expand Down