fix(ts): cast job.error to string before rendering in failure banner
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
efa2395527
commit
b0a90777ed
1 changed files with 1 additions and 1 deletions
|
|
@ -749,7 +749,7 @@ export function JobDetail() {
|
|||
? 'TTS generation failed. Fix audio description text before retrying.'
|
||||
: job.status === 'render_failed'
|
||||
? 'Video rendering failed.'
|
||||
: job.error
|
||||
: typeof job.error === 'string' && job.error
|
||||
? job.error
|
||||
: 'Processing failed. Retry or escalate to support.'}
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue