fix: route errors should no longer use json

This commit is contained in:
Aarnav Tale
2025-04-05 18:51:04 -04:00
parent 169a7b14d0
commit 1a2b1ad3f2
+1 -1
View File
@@ -81,7 +81,7 @@ export function ErrorPopup({ type = 'full' }: Props) {
<Card.Text
className={cn('mt-4 text-lg', routing ? 'font-normal' : 'font-mono')}
>
{routing ? error.data.message : message}
{routing ? error.data : message}
</Card.Text>
</Card>
</div>