diff --git a/apps/rowboat/app/projects/[projectId]/copilot/app.tsx b/apps/rowboat/app/projects/[projectId]/copilot/app.tsx index 3f876cb8..0b214aca 100644 --- a/apps/rowboat/app/projects/[projectId]/copilot/app.tsx +++ b/apps/rowboat/app/projects/[projectId]/copilot/app.tsx @@ -181,22 +181,40 @@ const App = forwardRef<{ handleCopyChat: () => void; handleUserMessage: (message )} - {effectiveContext &&
-
-
- {effectiveContext.type === 'chat' && "Chat"} - {effectiveContext.type === 'agent' && `Agent: ${effectiveContext.name}`} - {effectiveContext.type === 'tool' && `Tool: ${effectiveContext.name}`} - {effectiveContext.type === 'prompt' && `Prompt: ${effectiveContext.name}`} + {effectiveContext && ( +
+
+ {/* Context icon (no background) */} + {effectiveContext.type === 'chat' && ( + + )} + {effectiveContext.type === 'agent' && ( + + )} + {effectiveContext.type === 'tool' && ( + + )} + {effectiveContext.type === 'prompt' && ( + + )} + {/* Context label */} + + {effectiveContext.type === 'chat' && "Chat"} + {effectiveContext.type === 'agent' && `Agent: ${effectiveContext.name}`} + {effectiveContext.type === 'tool' && `Tool: ${effectiveContext.name}`} + {effectiveContext.type === 'prompt' && `Prompt: ${effectiveContext.name}`} + + {/* Close button */} +
-
-
} + )} void title={
-
- SKIPPER +
+ Skipper
diff --git a/apps/rowboat/app/projects/[projectId]/playground/app.tsx b/apps/rowboat/app/projects/[projectId]/playground/app.tsx index 7ec7b39d..78e8791a 100644 --- a/apps/rowboat/app/projects/[projectId]/playground/app.tsx +++ b/apps/rowboat/app/projects/[projectId]/playground/app.tsx @@ -101,8 +101,8 @@ export function App({ title={
-
- PLAYGROUND +
+ Playground
diff --git a/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx b/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx index 4102cf68..032fffce 100644 --- a/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx +++ b/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx @@ -271,7 +271,7 @@ export function Chat({ projectTools, ]); - return
+ return
{USE_TESTING_FEATURE && ( +
{messages.map((message, index) => { const renderedMessage = renderMessage(message, index); if (renderedMessage) { diff --git a/apps/rowboat/components/common/panel-common.tsx b/apps/rowboat/components/common/panel-common.tsx index 058ad594..70dfaca5 100644 --- a/apps/rowboat/components/common/panel-common.tsx +++ b/apps/rowboat/components/common/panel-common.tsx @@ -58,7 +58,7 @@ export function Panel({ return