From dc833d5b0f5af234d8ad2657a69f5e51c318f506 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 26 Dec 2025 17:03:44 -0500 Subject: [PATCH] feat: add Drawfast to toolbar (dev only) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added Drawfast button to toolbar between VideoGen and Map. Only visible in development mode. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/ui/CustomToolbar.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ui/CustomToolbar.tsx b/src/ui/CustomToolbar.tsx index 87fb227..a55f986 100644 --- a/src/ui/CustomToolbar.tsx +++ b/src/ui/CustomToolbar.tsx @@ -21,6 +21,7 @@ import WorkflowPalette from "../components/workflow/WorkflowPalette" const IS_PRODUCTION = import.meta.env.PROD const ENABLE_WORKFLOW = !IS_PRODUCTION // Workflow blocks - dev only const ENABLE_CALENDAR = !IS_PRODUCTION // Calendar - dev only +const ENABLE_DRAWFAST = !IS_PRODUCTION // Drawfast - dev only import { getFathomApiKey, saveFathomApiKey, removeFathomApiKey, isFathomApiKeyConfigured } from "../lib/fathomApiKey" import { getMyConnections, updateEdgeMetadata, createConnection, removeConnection, updateTrustLevel } from "../lib/networking/connectionService" import { TRUST_LEVEL_COLORS, type TrustLevel, type UserConnectionWithProfile, type EdgeMetadata } from "../lib/networking/types" @@ -770,6 +771,14 @@ export function CustomToolbar() { isSelected={tools["VideoGen"].id === editor.getCurrentToolId()} /> )} + {ENABLE_DRAWFAST && tools["Drawfast"] && ( + + )} {/* Terminal (Multmux) - temporarily hidden until in better working state {tools["Multmux"] && (