Merge branch 'main' into feat/document-table-filters

This commit is contained in:
Ephraim Duncan
2025-06-05 12:58:48 +00:00
committed by GitHub
18 changed files with 1305 additions and 60 deletions

View File

@ -58,7 +58,7 @@ const AlertDescription = React.forwardRef<
HTMLParagraphElement,
React.HTMLAttributes<HTMLParagraphElement>
>(({ className, ...props }, ref) => (
<div ref={ref} className={cn('text-sm', className)} {...props} />
<div ref={ref} className={cn('mt-2 text-sm', className)} {...props} />
));
AlertDescription.displayName = 'AlertDescription';