diff --git a/src/components/observer/observer-dashboard-content.tsx b/src/components/observer/observer-dashboard-content.tsx index 44c3112..a7a240e 100644 --- a/src/components/observer/observer-dashboard-content.tsx +++ b/src/components/observer/observer-dashboard-content.tsx @@ -350,7 +350,7 @@ export function ObserverDashboardContent({ userName }: { userName?: string }) { {/* Middle Row */}
{/* Left column: Score Distribution + Recently Reviewed stacked */} -
+
{/* Score Distribution */} @@ -397,8 +397,8 @@ export function ObserverDashboardContent({ userName }: { userName?: string }) { {/* Recently Reviewed */} - - + +
diff --git a/src/components/shared/animated-container.tsx b/src/components/shared/animated-container.tsx index debd459..5480118 100644 --- a/src/components/shared/animated-container.tsx +++ b/src/components/shared/animated-container.tsx @@ -3,9 +3,10 @@ import { motion } from 'motion/react' import { type ReactNode } from 'react' -export function AnimatedCard({ children, index = 0 }: { children: ReactNode; index?: number }) { +export function AnimatedCard({ children, index = 0, className }: { children: ReactNode; index?: number; className?: string }) { return (