(feat): small error screen improvement
Some checks failed
/ build-web (push) Failing after 3m56s
/ build-desktop (linux) (push) Failing after 4m13s
/ build-mobile (push) Failing after 6m43s
/ release (push) Has been skipped

(feat): use correct type maps
(fix): remove sudo from nix flake
(wip): migrate ttp to mtp
This commit is contained in:
Alois 2026-07-04 20:26:51 +02:00
commit 4e69b8ef77
8 changed files with 463 additions and 187 deletions

View file

@ -284,7 +284,7 @@ const rootRoute = createRootRoute({
errorComponent: ({ error }: { error: Error }) => (
<ErrorScreen
description={error.message}
error={"Error in TanStack Router: " + error.name}
error={"Unknown Error: " + error.name}
/>
),
});