Fix warning div child of p

Signed-off-by: Émile Ré <nemile.re@gmail.com>
This commit is contained in:
Émile Ré
2025-03-21 15:15:34 +04:00
parent f176bf13cd
commit 0a0fa1be3c

View File

@@ -70,7 +70,9 @@ export function PageDescription({
children: ReactNode;
}) {
return (
<p className={cn("text-md text-muted-foreground", className)}>{children}</p>
<div className={cn("text-md text-muted-foreground", className)}>
{children}
</div>
);
}