4031ab680d
- Change missing extension env vars from throw to log.warn (graceful degradation) - Move initialized flag after all init steps complete - Add error.tsx and loading.tsx for dashboard error boundaries - Fix cron route auth header checks - Add ensureInitialized() to journal entry reverse and invoice mark-paid/sent routes Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
271 B
TypeScript
10 lines
271 B
TypeScript
export default function DashboardLoading() {
|
|
return (
|
|
<div className="space-y-6 animate-pulse">
|
|
<div className="h-8 bg-muted rounded w-48" />
|
|
<div className="h-4 bg-muted rounded w-96" />
|
|
<div className="h-64 bg-muted rounded" />
|
|
</div>
|
|
)
|
|
}
|