mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-25 18:55:19 +02:00
Set show vizualisation feature flag to false
This commit is contained in:
parent
b12561d1aa
commit
d0cd917d06
2 changed files with 18 additions and 15 deletions
|
|
@ -17,3 +17,4 @@ export const USE_PRODUCT_TOUR = false;
|
|||
export const SHOW_COPILOT_MARQUEE = false;
|
||||
export const SHOW_PROMPTS_SECTION = false;
|
||||
export const SHOW_DARK_MODE_TOGGLE = false;
|
||||
export const SHOW_VISUALIZATION = false
|
||||
|
|
@ -25,7 +25,7 @@ import { deleteDataSource } from '../../../actions/datasource_actions';
|
|||
import { ToolkitAuthModal } from '../tools/components/ToolkitAuthModal';
|
||||
import { deleteConnectedAccount } from '@/app/actions/composio_actions';
|
||||
import { ProjectWideChangeConfirmationModal } from '@/components/common/project-wide-change-confirmation-modal';
|
||||
import { SHOW_PROMPTS_SECTION } from '../../../lib/feature_flags';
|
||||
import { SHOW_PROMPTS_SECTION, SHOW_VISUALIZATION } from '../../../lib/feature_flags';
|
||||
|
||||
// Reduced gap size to match Cursor's UI
|
||||
const GAP_SIZE = 4; // 1 unit * 4px (tailwind's default spacing unit)
|
||||
|
|
@ -698,6 +698,7 @@ export const EntityList = forwardRef<
|
|||
<span>Agents</span>
|
||||
</div>
|
||||
<div className="flex items-center gap-1">
|
||||
{SHOW_VISUALIZATION && (
|
||||
<Button
|
||||
variant="secondary"
|
||||
size="sm"
|
||||
|
|
@ -711,6 +712,7 @@ export const EntityList = forwardRef<
|
|||
>
|
||||
<Eye className="w-4 h-4" />
|
||||
</Button>
|
||||
)}
|
||||
<Button
|
||||
variant="secondary"
|
||||
size="sm"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue