This commit is contained in:
Andras Schmelczer 2026-06-02 08:21:47 +01:00
parent f99bd4e5c9
commit a04ac2d857
16 changed files with 132 additions and 74 deletions

View file

@ -192,9 +192,7 @@ export function useExportController({
const detail = err instanceof Error && err.message.trim() ? ` ${err.message}` : '';
showExportNotice({
kind: 'error',
message: timedOut
? t('header.exportTimedOut')
: `${t('header.exportFailed')}${detail}`,
message: timedOut ? t('header.exportTimedOut') : `${t('header.exportFailed')}${detail}`,
});
} finally {
window.clearTimeout(timeoutId);