Skip to content

Commit

Permalink
리뷰사항 반영
Browse files Browse the repository at this point in the history
- forwardRef -> forwardedRef
  • Loading branch information
nabi-chan authored and yangwooseong committed May 29, 2024
1 parent e17f505 commit d9fce7a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ export const BaseTagBadge = forwardRef<HTMLDivElement, BaseTagBadgeProps>(
export const BaseTagBadgeText = forwardRef<
HTMLDivElement,
BaseTagBadgeTextProps
>(function BaseTagBadgeText({ size, children, ...rest }, forwardRef) {
>(function BaseTagBadgeText({ size, children, ...rest }, forwardedRef) {

Check warning on line 54 in packages/bezier-react/src/components/BaseTagBadge/BaseTagBadge.tsx

View check run for this annotation

Codecov / codecov/patch

packages/bezier-react/src/components/BaseTagBadge/BaseTagBadge.tsx#L54

Added line #L54 was not covered by tests
return (
<Text
typo={getProperTypo(size)}
ref={forwardRef}
ref={forwardedRef}
{...rest}
>
{children}
Expand Down

0 comments on commit d9fce7a

Please sign in to comment.