From 03bcbfd1c5a2743306dca217a1a87a43ed18a6b1 Mon Sep 17 00:00:00 2001 From: mawkone Date: Mon, 8 Jun 2026 13:25:45 -0700 Subject: [PATCH] fix(agency): resolve unused imports and wire workspace slug dynamically into Agency Command Center sidebar --- vibn-frontend/app/[workspace]/agency/page.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vibn-frontend/app/[workspace]/agency/page.tsx b/vibn-frontend/app/[workspace]/agency/page.tsx index 8d555439..1ad75279 100644 --- a/vibn-frontend/app/[workspace]/agency/page.tsx +++ b/vibn-frontend/app/[workspace]/agency/page.tsx @@ -1,7 +1,6 @@ "use client"; import React, { useState } from "react"; -import Link from "next/link"; import { useParams } from "next/navigation"; // Minimal SVG Icons @@ -290,9 +289,10 @@ export default function AgencyDashboard() { placeItems: "center", fontWeight: 700, fontSize: "12px", + textTransform: "uppercase", }} > - A + {typeof workspace === "string" ? workspace.charAt(0) : "A"}
- Atlas Agency + {typeof workspace === "string" + ? workspace.replace(/-/g, " ") + : "Atlas Agency"} Pro ยท 2 members