Fix warning div child of p
Signed-off-by: Émile Ré <nemile.re@gmail.com>
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user