diff --git a/studio/frontend/src/features/export/components/export-dialog.tsx b/studio/frontend/src/features/export/components/export-dialog.tsx
index fedbcca76a..0cbd31fdb4 100644
--- a/studio/frontend/src/features/export/components/export-dialog.tsx
+++ b/studio/frontend/src/features/export/components/export-dialog.tsx
@@ -54,7 +54,7 @@ export function ExportDialog({
checkpoint,
exportMethod,
quantLevels,
- estimatedSize,
+ estimatedSize: _estimatedSize,
baseModelName,
isAdapter,
destination,
@@ -101,176 +101,176 @@ export function ExportDialog({
>
) : (
- <>
-
- Export Model
-
- Choose where to save your exported model.
-
-
+ <>
+
+ Export Model
+
+ Choose where to save your exported model.
+
+
-
-
-
-
-
-
- {destination === "hub" && (
-
-
-
-
-
-
-
-
-
-
- onHfTokenChange(e.target.value)}
- disabled={exporting}
- />
-
-
- Leave empty if already logged in via CLI.
-
-
-
-
-
-
-
-
-
- )}
-
-
- {/* Error banner */}
- {exportError && (
-
-
- {exportError}
-
- )}
-
- {/* Summary */}
-
-
- Base Model
- {baseModelName}
-
-
- {isAdapter ? "Checkpoint" : "Model"}
- {checkpoint}
-
-
- Export Method
-
- {EXPORT_METHODS.find((m) => m.value === exportMethod)?.title}
-
-
- {exportMethod === "gguf" && quantLevels.length > 0 && (
-
-
Quantizations
-
- {quantLevels.join(", ")}
-
+
+
+
- )}
- {/* TODO: unhide once estimated size comes from the backend API */}
- {/*
+
+
+ {destination === "hub" && (
+
+
+
+
+
+
+
+
+
+
+ onHfTokenChange(e.target.value)}
+ disabled={exporting}
+ />
+
+
+ Leave empty if already logged in via CLI.
+
+
+
+
+
+
+
+
+
+ )}
+
+
+ {/* Error banner */}
+ {exportError && (
+
+
+ {exportError}
+
+ )}
+
+ {/* Summary */}
+
+
+ Base Model
+ {baseModelName}
+
+
+ {isAdapter ? "Checkpoint" : "Model"}
+ {checkpoint}
+
+
+ Export Method
+
+ {EXPORT_METHODS.find((m) => m.value === exportMethod)?.title}
+
+
+ {exportMethod === "gguf" && quantLevels.length > 0 && (
+
+ Quantizations
+
+ {quantLevels.join(", ")}
+
+
+ )}
+ {/* TODO: unhide once estimated size comes from the backend API */}
+ {/*
Est. size
{estimatedSize}
*/}
-
+
-
-
-
-
- >
+
+
+
+
+ >
)}