view data fixes
Some checks failed
Contract Testing / contract-tests (pull_request) Failing after 5m42s
Contract Testing / contract-snapshot (pull_request) Has been skipped

This commit is contained in:
2026-01-22 23:40:38 +01:00
parent 1288a9dc30
commit 18133aef4c
111 changed files with 841 additions and 324 deletions

View File

@@ -3,12 +3,13 @@
import { ErrorDetails } from '@/components/errors/ErrorDetails';
import { RecoveryActions } from '@/components/errors/RecoveryActions';
import { ServerErrorPanel } from '@/components/errors/ServerErrorPanel';
import { ViewData } from '@/lib/contracts/view-data/ViewData';
import { Box } from '@/ui/Box';
import { Glow } from '@/ui/Glow';
import { Stack } from '@/ui/Stack';
import { Surface } from '@/ui/Surface';
export interface ServerErrorViewData {
export interface ServerErrorViewData extends ViewData {
error: Error & { digest?: string };
incidentId?: string;
}