From 1a2b1ad3f2dc605a00cd1fd924748285a1e62c9f Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Sat, 5 Apr 2025 18:51:04 -0400 Subject: [PATCH] fix: route errors should no longer use json --- app/components/Error.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Error.tsx b/app/components/Error.tsx index a867a7a..5a6e4f2 100644 --- a/app/components/Error.tsx +++ b/app/components/Error.tsx @@ -81,7 +81,7 @@ export function ErrorPopup({ type = 'full' }: Props) { - {routing ? error.data.message : message} + {routing ? error.data : message}