diff --git a/apps/rowboat/app/projects/[projectId]/config/app.tsx b/apps/rowboat/app/projects/[projectId]/config/app.tsx index e78d8855..bfff5392 100644 --- a/apps/rowboat/app/projects/[projectId]/config/app.tsx +++ b/apps/rowboat/app/projects/[projectId]/config/app.tsx @@ -27,6 +27,7 @@ import { ToolsSection } from './components/tools'; import { Panel } from "@/components/common/panel-common"; import { Settings, Wrench, Phone } from "lucide-react"; import { clsx } from "clsx"; +import { USE_VOICE_FEATURE } from "@/app/lib/feature_flags"; export const metadata: Metadata = { title: "Project config", @@ -799,7 +800,7 @@ function NavigationMenu({ const items = [ { id: 'Project', icon: }, { id: 'Tools', icon: }, - { id: 'Voice', icon: } + ...(USE_VOICE_FEATURE ? [{ id: 'Voice', icon: }] : []) ]; return (