mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-01 11:26:23 +02:00
use env variable for showing pre-built cards
This commit is contained in:
parent
2368d1b64a
commit
01ed2eda18
2 changed files with 2 additions and 2 deletions
|
|
@ -18,4 +18,3 @@ 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_PREBUILT_CARDS = false;
|
||||
|
|
@ -16,7 +16,8 @@ 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';
|
||||
|
||||
const SHOW_PREBUILT_CARDS = process.env.NEXT_PUBLIC_SHOW_PREBUILT_CARDS === 'true';
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue