Fix error discarded by error toast handler

This commit is contained in:
filtered
2025-06-23 13:49:20 -07:00
parent 1cf71265cd
commit 79d31f3e8e

View File

@@ -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 =