diff --git a/studio/frontend/src/features/chat/components/model-load-status.tsx b/studio/frontend/src/features/chat/components/model-load-status.tsx
index 9686011aca..19eff054f7 100644
--- a/studio/frontend/src/features/chat/components/model-load-status.tsx
+++ b/studio/frontend/src/features/chat/components/model-load-status.tsx
@@ -10,7 +10,6 @@ type ModelLoadDescriptionProps = {
progressPercent?: number | null;
progressLabel?: string | null;
onStop?: () => void;
- stopLabel?: string;
};
function clampProgress(value: number): number {
@@ -22,7 +21,6 @@ export function ModelLoadDescription({
progressPercent,
progressLabel,
onStop,
- stopLabel = "Stop loading",
}: ModelLoadDescriptionProps) {
const hasProgress = typeof progressPercent === "number";
@@ -45,11 +43,11 @@ export function ModelLoadDescription({
) : null}
@@ -94,8 +92,8 @@ export function ModelLoadInlineStatus({