Midday / apps /dashboard /src /components /widgets /widget-error-fallback.tsx
Jules
Final deployment with all fixes and verified content
c09f67c
"use client";
export function WidgetErrorFallback() {
return (
<div className="h-full flex items-center justify-center text-xs text-[#707070] dark:text-[#666666] border border-[#e6e6e6] dark:border-[#1d1d1d] rounded">
Error loading content
</div>
);
}