Skip to content

Commit

Permalink
chore(Checkbox): Move Checkbox CSS module feature flag from staff to …
Browse files Browse the repository at this point in the history
…ga (#5280)

* Move Checkbox to ga feature flag

* Create tricky-ways-tan.md
  • Loading branch information
jonrohan authored Nov 13, 2024
1 parent a9088e6 commit 973130e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/tricky-ways-tan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@primer/react": patch
---

Move Checkbox CSS module feature flag from staff to ga
2 changes: 1 addition & 1 deletion packages/react/src/Checkbox/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
},
ref,
): ReactElement => {
const enabled = useFeatureFlag('primer_react_css_modules_staff')
const enabled = useFeatureFlag('primer_react_css_modules_ga')
const checkboxRef = useProvidedRefOrCreate(ref as React.RefObject<HTMLInputElement>)
const checkboxGroupContext = useContext(CheckboxGroupContext)
const handleOnChange: ChangeEventHandler<HTMLInputElement> = e => {
Expand Down

0 comments on commit 973130e

Please sign in to comment.