diff --git a/frontend/src/components/workspace/artifacts/artifact-file-detail.tsx b/frontend/src/components/workspace/artifacts/artifact-file-detail.tsx
index 34e92352..9d30c567 100644
--- a/frontend/src/components/workspace/artifacts/artifact-file-detail.tsx
+++ b/frontend/src/components/workspace/artifacts/artifact-file-detail.tsx
@@ -468,13 +468,13 @@ export function ArtifactFileDetail({
{previewable &&
viewMode === "preview" &&
(language === "markdown" || language === "html") && (
-
+
+
+
)}
{isCodeFile && viewMode === "code" && (
@@ -487,14 +487,14 @@ export function ArtifactFileDetail({
)}
{!isCodeFile && (
-
-
-
+
+
+
)}
@@ -526,17 +526,21 @@ export function ArtifactFilePreview({
{content ?? ""}
+
);
}
if (language === "html") {
return (
-
+
+
+
+
);
}
return null;
diff --git a/frontend/src/components/workspace/input-box.tsx b/frontend/src/components/workspace/input-box.tsx
index 8435a9dd..f1248dfa 100644
--- a/frontend/src/components/workspace/input-box.tsx
+++ b/frontend/src/components/workspace/input-box.tsx
@@ -88,7 +88,7 @@ export function InputBox({
threadId: threadIdFromProps,
disabled,
autoFocus,
- status = "ready",
+ status,
context,
extraHeader,
showWelcomeStyle,