diff --git a/src/components/molecules/badge/withBadge.tsx b/src/components/molecules/badge/withBadge.tsx index f2d44c70..2398702e 100644 --- a/src/components/molecules/badge/withBadge.tsx +++ b/src/components/molecules/badge/withBadge.tsx @@ -99,22 +99,24 @@ const withBadge = // Render the wrapped component with the badge return ( - + + - {!hidden && ( - - {badgeValue} - - )} + {!hidden && ( + + {badgeValue} + + )} + ) as React.ReactElement

; };