diff --git a/src/components/navbar/index.tsx b/src/components/navbar/index.tsx
index d043954..ab24ac8 100644
--- a/src/components/navbar/index.tsx
+++ b/src/components/navbar/index.tsx
@@ -14,7 +14,6 @@ import {
} from "@/components/ui/navigation-menu";
import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/sheet";
import { UserInfoSignOut } from "@/features/user-auth-status";
-import { GraphDropdown } from "@/features/graph-dropdown";
import { CreditBalance } from "@/components/credits/credit-balance";
export function Navbar() {
@@ -53,7 +52,6 @@ export function Navbar() {
-
diff --git a/src/features/graph-dropdown/index.tsx b/src/features/graph-dropdown/index.tsx
index 4bda76f..938b47e 100644
--- a/src/features/graph-dropdown/index.tsx
+++ b/src/features/graph-dropdown/index.tsx
@@ -12,6 +12,14 @@ import { getDeployments } from "@/lib/environment/deployments";
import { Deployment } from "@/app/types/deployment";
import { Badge } from "@/components/ui/badge";
+/**
+ * GraphDropdown component - Currently not in use
+ *
+ * This component has been removed from the UI in favor of using
+ * process.env.NEXT_PUBLIC_ASSISTANT_ID to set the graph behind the scenes.
+ * The Stream and Thread providers automatically fall back to the environment
+ * variable when no assistantId query state is present.
+ */
export function GraphDropdown() {
const { session } = useAuthContext();
const jwt = session?.accessToken;