diff --git a/apps/rowboat/app/projects/[projectId]/playground/components/messages.tsx b/apps/rowboat/app/projects/[projectId]/playground/components/messages.tsx
index ec5a8c14..dd837e96 100644
--- a/apps/rowboat/app/projects/[projectId]/playground/components/messages.tsx
+++ b/apps/rowboat/app/projects/[projectId]/playground/components/messages.tsx
@@ -2,6 +2,7 @@
import { Spinner } from "@heroui/react";
import { useMemo, useState } from "react";
import z from "zod";
+import Image from "next/image";
import { Workflow } from "@/app/lib/types/workflow_types";
import { WorkflowTool } from "@/app/lib/types/workflow_types";
import MarkdownContent from "@/app/lib/components/markdown-content";
@@ -200,10 +201,13 @@ function AssistantMessage({
>
-
{img.truncated && (
@@ -525,10 +529,13 @@ function ClientToolCall({
>
-

{img.truncated && (
@@ -617,10 +624,13 @@ function ClientToolCall({
{imagePreviews.map((img, i) => (
-

{img.truncated && (
diff --git a/apps/rowboat/app/projects/[projectId]/workflow/workflow_editor.tsx b/apps/rowboat/app/projects/[projectId]/workflow/workflow_editor.tsx
index eff2b58c..83500c70 100644
--- a/apps/rowboat/app/projects/[projectId]/workflow/workflow_editor.tsx
+++ b/apps/rowboat/app/projects/[projectId]/workflow/workflow_editor.tsx
@@ -2103,7 +2103,7 @@ export function WorkflowEditor({
/>
{/* Config overlay above Playground when selection open */}
{state.present.selection && viewMode !== 'two_agents_skipper' && (
-
+
{state.present.selection?.type === "agent" &&
agent.name === state.present.selection!.name)}-${configKey}`}
@@ -2209,7 +2209,7 @@ export function WorkflowEditor({
/>
{/* Config overlay above Copilot when agents + skipper layout is active */}
{state.present.selection && viewMode === 'two_agents_skipper' && (
-
+
{state.present.selection?.type === "agent" &&
agent.name === state.present.selection!.name)}-${configKey}`}