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:
parent
035fa6f936
commit
d84e982ff0
|
|
@ -128,9 +128,7 @@ export function CustomContextMenu(props: TLUiContextMenuProps) {
|
|||
<TldrawUiMenuItem {...tools.Prompt} />
|
||||
<TldrawUiMenuItem {...tools.ChatBox} />
|
||||
<TldrawUiMenuItem {...tools.ImageGen} />
|
||||
{/* VideoGen - temporarily hidden until in better working state
|
||||
<TldrawUiMenuItem {...tools.VideoGen} />
|
||||
*/}
|
||||
{/* Drawfast - temporarily hidden until in better working state
|
||||
<TldrawUiMenuItem {...tools.Drawfast} />
|
||||
*/}
|
||||
|
|
|
|||
|
|
@ -757,7 +757,6 @@ export function CustomToolbar() {
|
|||
isSelected={tools["ImageGen"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
{/* VideoGen - temporarily hidden until in better working state
|
||||
{tools["VideoGen"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["VideoGen"]}
|
||||
|
|
@ -766,7 +765,6 @@ export function CustomToolbar() {
|
|||
isSelected={tools["VideoGen"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
*/}
|
||||
{/* Terminal (Multmux) - temporarily hidden until in better working state
|
||||
{tools["Multmux"] && (
|
||||
<TldrawUiMenuItem
|
||||
|
|
|
|||
Loading…
Reference in New Issue