Skip to content

Commit

Permalink
fix: no longer nest div in p
Browse files Browse the repository at this point in the history
  • Loading branch information
hiporox committed Jul 8, 2024
1 parent b288318 commit a19b9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/components/atoms/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const CardDescription = React.forwardRef<
HTMLParagraphElement,
React.HTMLAttributes<HTMLParagraphElement>
>(({ className, ...props }, ref) => (
<p
<div
ref={ref}
className={mergeClasses("text-sm text-muted-foreground", className)}
{...props}
Expand Down

0 comments on commit a19b9fd

Please sign in to comment.