fix: route errors should no longer use json

This commit is contained in:
Aarnav Tale 2025-04-05 18:51:04 -04:00
parent 5ae6e60db9
commit e8059ca6fd
No known key found for this signature in database

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>