From 79d31f3e8eedf0fb03b45fb8c63bf35b6eb857c7 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Mon, 23 Jun 2025 13:49:20 -0700 Subject: [PATCH] Fix error discarded by error toast handler --- src/composables/useErrorHandling.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/composables/useErrorHandling.ts b/src/composables/useErrorHandling.ts index 623e6c5e0..607997ac8 100644 --- a/src/composables/useErrorHandling.ts +++ b/src/composables/useErrorHandling.ts @@ -9,6 +9,7 @@ export function useErrorHandling() { summary: t('g.error'), detail: error instanceof Error ? error.message : t('g.unknownError') }) + console.error(error) } const wrapWithErrorHandling =