chore: update various components and services for improved functionality and consistency, including formatting adjustments and minor refactors
This commit is contained in:
@@ -8,16 +8,7 @@ interface OptimizedSkeletonProps {
|
||||
}
|
||||
|
||||
export function OptimizedSkeleton({ className, children }: OptimizedSkeletonProps) {
|
||||
return (
|
||||
<div
|
||||
className={cn(
|
||||
"animate-pulse rounded-md bg-muted/50",
|
||||
className
|
||||
)}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
return <div className={cn("animate-pulse rounded-md bg-muted/50", className)}>{children}</div>;
|
||||
}
|
||||
|
||||
export function HomePageSkeleton() {
|
||||
|
||||
Reference in New Issue
Block a user