fix: error message (update title) (#2691)

This commit is contained in:
Catalin Pit
2026-04-22 08:42:07 +03:00
committed by GitHub
parent 3249f855fb
commit d38d703fd3
2 changed files with 30 additions and 13 deletions
@@ -602,6 +602,10 @@ export const templateRouter = router({
}).catch((err) => {
console.error(err);
if (err instanceof AppError) {
throw err;
}
throw new AppError('DOCUMENT_SEND_FAILED');
});
}