From 0f8b23dda1de76922f4b09278b6a84c21a377e3d Mon Sep 17 00:00:00 2001 From: Konstantin Wohlwend Date: Mon, 2 Feb 2026 13:07:45 -0800 Subject: [PATCH] Reduce error flickering --- apps/dashboard/src/app/global-error.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/src/app/global-error.tsx b/apps/dashboard/src/app/global-error.tsx index bd9887d01..83f831aef 100644 --- a/apps/dashboard/src/app/global-error.tsx +++ b/apps/dashboard/src/app/global-error.tsx @@ -18,7 +18,7 @@ export default function GlobalError({ error }: any) { if (!cancelled) { window.location.assign("/"); } - }, 20); + }, 3_000); return () => { cancelled = true; };