Skip to content

Commit

Permalink
Change the Link component feature flag from primer_react_css_modules_…
Browse files Browse the repository at this point in the history
…staff to primer_react_css_modules_ga (#4975)

* Move Link to ga feature flag

* Create dirty-pianos-wash.md
  • Loading branch information
jonrohan committed Sep 18, 2024
1 parent 3c39717 commit 0b89fc0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/dirty-pianos-wash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@primer/react": patch
---

Change the Link component feature flag from primer_react_css_modules_staff to primer_react_css_modules_ga
4 changes: 2 additions & 2 deletions e2e/components/Link.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test.describe('Link', () => {
globals: {
colorScheme: theme,
featureFlags: {
primer_react_css_modules_staff: true,
primer_react_css_modules_ga: true,
},
},
})
Expand All @@ -55,7 +55,7 @@ test.describe('Link', () => {
globals: {
colorScheme: theme,
featureFlags: {
primer_react_css_modules_staff: true,
primer_react_css_modules_ga: true,
},
},
})
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/Link/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const StyledLink = styled.a<StyledLinkProps>`
`

const Link = forwardRef(({as: Component = 'a', className, inline, underline, ...props}, forwardedRef) => {
const enabled = useFeatureFlag('primer_react_css_modules_staff')
const enabled = useFeatureFlag('primer_react_css_modules_ga')

const innerRef = React.useRef<HTMLAnchorElement>(null)
useRefObjectAsForwardedRef(forwardedRef, innerRef)
Expand Down

0 comments on commit 0b89fc0

Please sign in to comment.