feat: re-enable VideoGen tool in toolbar and context menu

Re-enabled the video generation tool for testing with the new fal.ai
MCP server backend. The tool was previously hidden while being developed.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2025-12-23 20:22:20 -05:00
parent 035fa6f936
commit d84e982ff0
2 changed files with 0 additions and 4 deletions

View File

@ -128,9 +128,7 @@ export function CustomContextMenu(props: TLUiContextMenuProps) {
<TldrawUiMenuItem {...tools.Prompt} /> <TldrawUiMenuItem {...tools.Prompt} />
<TldrawUiMenuItem {...tools.ChatBox} /> <TldrawUiMenuItem {...tools.ChatBox} />
<TldrawUiMenuItem {...tools.ImageGen} /> <TldrawUiMenuItem {...tools.ImageGen} />
{/* VideoGen - temporarily hidden until in better working state
<TldrawUiMenuItem {...tools.VideoGen} /> <TldrawUiMenuItem {...tools.VideoGen} />
*/}
{/* Drawfast - temporarily hidden until in better working state {/* Drawfast - temporarily hidden until in better working state
<TldrawUiMenuItem {...tools.Drawfast} /> <TldrawUiMenuItem {...tools.Drawfast} />
*/} */}

View File

@ -757,7 +757,6 @@ export function CustomToolbar() {
isSelected={tools["ImageGen"].id === editor.getCurrentToolId()} isSelected={tools["ImageGen"].id === editor.getCurrentToolId()}
/> />
)} )}
{/* VideoGen - temporarily hidden until in better working state
{tools["VideoGen"] && ( {tools["VideoGen"] && (
<TldrawUiMenuItem <TldrawUiMenuItem
{...tools["VideoGen"]} {...tools["VideoGen"]}
@ -766,7 +765,6 @@ export function CustomToolbar() {
isSelected={tools["VideoGen"].id === editor.getCurrentToolId()} isSelected={tools["VideoGen"].id === editor.getCurrentToolId()}
/> />
)} )}
*/}
{/* Terminal (Multmux) - temporarily hidden until in better working state {/* Terminal (Multmux) - temporarily hidden until in better working state
{tools["Multmux"] && ( {tools["Multmux"] && (
<TldrawUiMenuItem <TldrawUiMenuItem