Fix error discarded by error toast handler

This commit is contained in:
filtered
2025-06-23 13:49:20 -07:00
parent 5acfe4ad98
commit 586314e0da

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 =