diff --git a/frontend/src/components/workspace/workspace-header.tsx b/frontend/src/components/workspace/workspace-header.tsx index 9cfd5fc..db68c34 100644 --- a/frontend/src/components/workspace/workspace-header.tsx +++ b/frontend/src/components/workspace/workspace-header.tsx @@ -12,6 +12,7 @@ import { useSidebar, } from "@/components/ui/sidebar"; import { useI18n } from "@/core/i18n/hooks"; +import { env } from "@/env"; import { cn } from "@/lib/utils"; export function WorkspaceHeader({ className }: { className?: string }) { @@ -35,9 +36,15 @@ export function WorkspaceHeader({ className }: { className?: string }) { ) : (
- - DeerFlow - + {env.NEXT_PUBLIC_STATIC_WEBSITE_ONLY === "true" ? ( + + DeerFlow + + ) : ( +
+ DeerFlow +
+ )}
)}