diff --git a/dashboard/src/components/RequestErrorDialog.vue b/dashboard/src/components/RequestErrorDialog.vue index 19f49c0eb..36cba6463 100644 --- a/dashboard/src/components/RequestErrorDialog.vue +++ b/dashboard/src/components/RequestErrorDialog.vue @@ -11,7 +11,7 @@ const stackTrace = ref(''); async function onError(error) { // this is handled by the fetcher global error hook - if (error.status === 401 || error.status >= 502) return; + if (error.status === 401 || error.status >= 502 || error instanceof TypeError) return; console.error(error);