diff --git a/apps/mcp/src/widget/components/WorkspaceCard.tsx b/apps/mcp/src/widget/components/WorkspaceCard.tsx index 597cf734..490add1a 100644 --- a/apps/mcp/src/widget/components/WorkspaceCard.tsx +++ b/apps/mcp/src/widget/components/WorkspaceCard.tsx @@ -20,20 +20,20 @@ export function WorkspaceCard({ return ( onClick(containerTag.containerTag)} variant={active ? "active" : "interactive"} > -
+
{access ? : null}
{active ? ( - + ) : null} {name} diff --git a/apps/mcp/src/widget/views/Picker.tsx b/apps/mcp/src/widget/views/Picker.tsx index 8bb41aa2..ba9d11da 100644 --- a/apps/mcp/src/widget/views/Picker.tsx +++ b/apps/mcp/src/widget/views/Picker.tsx @@ -66,12 +66,8 @@ export function Picker({ return (
- -
+ +
{count >= SEARCH_THRESHOLD ? (
@@ -91,7 +87,7 @@ export function Picker({ No workspaces match “{query}”.

) : ( -
+
{filtered.map((tag) => { const access = assignedTags?.find( (t) => t.containerTag === tag.containerTag,