chore:little fixes and formating and linting and patches

This commit is contained in:
2026-03-31 15:50:54 +02:00
parent a1ce71ffb6
commit 9b197abcfa
815 changed files with 22960 additions and 8982 deletions

View File

@@ -1,17 +1,20 @@
import { ServerCrashIcon } from 'lucide-react';
import { FullPageEmptyState } from './full-page-empty-state';
export const FullPageErrorState = ({
title = 'Error...',
description = 'Something went wrong...',
children,
}: { title?: string; description?: string; children?: React.ReactNode }) => {
}: {
title?: string;
description?: string;
children?: React.ReactNode;
}) => {
return (
<FullPageEmptyState
className="min-h-[calc(100vh-theme(spacing.16))]"
title={title}
icon={ServerCrashIcon}
title={title}
>
{description}
{children && <div className="mt-4">{children}</div>}