diff --git a/src/components/image-editor/model3d-generation/Model3dGenerationSubmission.ts b/src/components/image-editor/model3d-generation/Model3dGenerationSubmission.ts index a7c25b14d..9a09340e1 100644 --- a/src/components/image-editor/model3d-generation/Model3dGenerationSubmission.ts +++ b/src/components/image-editor/model3d-generation/Model3dGenerationSubmission.ts @@ -48,7 +48,6 @@ type Model3dSubmissionPlanBase = { */ attemptNonce: string; requestKey: string; - title: string; }; export type Model3dSubmissionPlan = @@ -169,7 +168,6 @@ export function buildModel3dSubmissionPlan({ ...(trimmedProjectId && canvasCompletion ? { canvasCompletion } : {}), }; // 一个端点一个收口函数:端点字面量与提交体类型在同一处配对,判别联合据此收窄。 - const title = resolveModel3dResultTitle(dialog); const finishTextToModel = ( body: Model3dTextToModelRequest, ): { ok: true; plan: Model3dSubmissionPlan } => ({ @@ -182,7 +180,6 @@ export function buildModel3dSubmissionPlan({ endpoint: 'text-to-model', body, }), - title, body, }, }); @@ -198,7 +195,6 @@ export function buildModel3dSubmissionPlan({ endpoint: 'image-to-model', body, }), - title, body, }, });