From d2a550f60e85b4e81badc93679459d9bdf5f2acd Mon Sep 17 00:00:00 2001 From: xiaoxia Date: Fri, 7 Aug 2026 15:04:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A7=BB=E9=99=A4=20Step3GeneratePrevie?= =?UTF-8?q?w=20=E4=B8=AD=E6=9C=AA=E4=BD=BF=E7=94=A8=E7=9A=84=E8=A7=A3?= =?UTF-8?q?=E6=9E=84=E5=8F=98=E9=87=8F=EF=BC=8C=E4=BF=AE=E5=A4=8D=20ESLint?= =?UTF-8?q?=20=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - templateName/materialCount/videoRatio 在删除剪辑方案信息卡片后不再使用 - 使用别名 _templateName/_materialCount/_videoRatio 消除 no-unused-vars 错误 --- .../src/pages/generate/components/Step3GeneratePreview.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/src/pages/generate/components/Step3GeneratePreview.tsx b/apps/web/src/pages/generate/components/Step3GeneratePreview.tsx index 83ffe7663..71311b660 100644 --- a/apps/web/src/pages/generate/components/Step3GeneratePreview.tsx +++ b/apps/web/src/pages/generate/components/Step3GeneratePreview.tsx @@ -27,9 +27,9 @@ interface Step3GeneratePreviewProps { } const Step3GeneratePreview: React.FC = ({ - templateName, - materialCount, - videoRatio, + templateName: _templateName, + materialCount: _materialCount, + videoRatio: _videoRatio, previewStatus, previewResult, previewError,