diff --git a/studio/frontend/src/features/export/export-page.tsx b/studio/frontend/src/features/export/export-page.tsx index b47697e97b..643ea02ad5 100644 --- a/studio/frontend/src/features/export/export-page.tsx +++ b/studio/frontend/src/features/export/export-page.tsx @@ -454,15 +454,13 @@ export function ExportPage() { }); } } else if (exportMethod === "gguf") { - for (const quant of quantLevels) { - await exportGGUF({ - save_directory: saveDir, - quantization_method: quant, - push_to_hub: pushToHub, - repo_id: repoId, - hf_token: token, - }); - } + await exportGGUF({ + save_directory: saveDir, + quantization_method: quantLevels, + push_to_hub: pushToHub, + repo_id: repoId, + hf_token: token, + }); } else if (exportMethod === "lora") { await exportLoRA({ save_directory: saveDir,