diff --git a/apps/web/src/api/tts/jobs.ts b/apps/web/src/api/tts/jobs.ts index 3bc6d4ab7..19653024a 100644 --- a/apps/web/src/api/tts/jobs.ts +++ b/apps/web/src/api/tts/jobs.ts @@ -81,6 +81,7 @@ export const extractVideoVoice = async ( ): Promise<{ asset_id: string; duration: number }> => { const formData = new FormData() formData.append("file", file) + formData.append("project_id", "default") return new Promise((resolve, reject) => { const xhr = new XMLHttpRequest()