Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion apps/rowboat/app/lib/feature_flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ export const USE_PRODUCT_TOUR = false;
export const SHOW_COPILOT_MARQUEE = false;
export const SHOW_PROMPTS_SECTION = true;
export const SHOW_DARK_MODE_TOGGLE = false;
export const SHOW_VISUALIZATION = false
export const SHOW_VISUALIZATION = false;
export const SHOW_PREBUILT_CARDS = false;
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { Tabs, Tab } from "@/components/ui/tabs";
import { Project } from "@/src/entities/models/project";
import { z } from "zod";
import Link from 'next/link';
import { SHOW_PREBUILT_CARDS } from '@/app/lib/feature_flags';



Expand Down Expand Up @@ -398,7 +399,7 @@ export function BuildAssistantSection() {
</div>

{/* Pre-built Assistants Section - Only show for New Assistant tab */}
{selectedTab === 'new' && (
{selectedTab === 'new' && SHOW_PREBUILT_CARDS && (
<div className="max-w-5xl mx-auto mt-16">
<div className="bg-white dark:bg-gray-800 rounded-2xl p-6 shadow-lg border border-gray-200 dark:border-gray-700">
<div className="text-left mb-6">
Expand Down