diff --git a/apps/web/src/workbench/WorkbenchShell.tsx b/apps/web/src/workbench/WorkbenchShell.tsx index b9b2ce0..244e7a2 100644 --- a/apps/web/src/workbench/WorkbenchShell.tsx +++ b/apps/web/src/workbench/WorkbenchShell.tsx @@ -9786,7 +9786,7 @@ function FunClipEditingPage({ return null; } const videoAsset = { - type: asset.type, + type: 'video' as const, name: asset.name || '数字人成片', url: asset.url || '', thumbnailUrl: asset.thumbnailUrl || '', @@ -10437,7 +10437,10 @@ function FunClipEditingPage({ } return false; } - if (detail.intent === 'digital-human-polish' && match.id.startsWith('handoff-')) { + if ( + detail.intent === 'digital-human-polish' && + match.id.startsWith('handoff-') + ) { setRetainedHandoffSource(match); } setSelectedSourceId(match.id);