feat: enable all tools in context menu and toolbar for dev testing
Enabled: - Drawfast - Holon - Multmux/Terminal - MycroZineGenerator All tools now available in both the right-click context menu and the top toolbar for testing on the dev/staging branch. 🤖 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
0329395362
commit
0111f04db2
|
|
@ -129,25 +129,19 @@ export function CustomContextMenu(props: TLUiContextMenuProps) {
|
|||
<TldrawUiMenuItem {...tools.ChatBox} />
|
||||
<TldrawUiMenuItem {...tools.ImageGen} />
|
||||
<TldrawUiMenuItem {...tools.VideoGen} />
|
||||
{/* Drawfast - temporarily hidden until in better working state
|
||||
<TldrawUiMenuItem {...tools.Drawfast} />
|
||||
*/}
|
||||
<TldrawUiMenuItem {...tools.Markdown} />
|
||||
<TldrawUiMenuItem {...tools.ObsidianNote} />
|
||||
<TldrawUiMenuItem {...tools.Transcription} />
|
||||
<TldrawUiMenuItem {...tools.Embed} />
|
||||
{/* Holon - temporarily hidden until in better working state
|
||||
<TldrawUiMenuItem {...tools.Holon} />
|
||||
*/}
|
||||
{/* Terminal (Multmux) - temporarily hidden until in better working state
|
||||
<TldrawUiMenuItem {...tools.Multmux} />
|
||||
*/}
|
||||
<TldrawUiMenuItem {...tools.Map} />
|
||||
<TldrawUiMenuItem {...tools.calendar} />
|
||||
<TldrawUiMenuItem {...tools.SlideShape} />
|
||||
<TldrawUiMenuItem {...tools.VideoChat} />
|
||||
<TldrawUiMenuItem {...tools.FathomMeetings} />
|
||||
{/* MycroZineGenerator temporarily disabled for debugging */}
|
||||
<TldrawUiMenuItem {...tools.MycroZineGenerator} />
|
||||
</TldrawUiMenuSubmenu>
|
||||
</TldrawUiMenuGroup>
|
||||
|
||||
|
|
|
|||
|
|
@ -695,7 +695,6 @@ export function CustomToolbar() {
|
|||
isSelected={tools["Markdown"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
{/* MycroZine Generator temporarily disabled for debugging
|
||||
{tools["MycroZineGenerator"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["MycroZineGenerator"]}
|
||||
|
|
@ -706,7 +705,6 @@ export function CustomToolbar() {
|
|||
}
|
||||
/>
|
||||
)}
|
||||
*/}
|
||||
{tools["Prompt"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["Prompt"]}
|
||||
|
|
@ -731,7 +729,6 @@ export function CustomToolbar() {
|
|||
isSelected={tools["Transcription"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
{/* Holon - temporarily hidden until in better working state
|
||||
{tools["Holon"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["Holon"]}
|
||||
|
|
@ -740,7 +737,6 @@ export function CustomToolbar() {
|
|||
isSelected={tools["Holon"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
*/}
|
||||
{tools["FathomMeetings"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["FathomMeetings"]}
|
||||
|
|
@ -765,7 +761,6 @@ export function CustomToolbar() {
|
|||
isSelected={tools["VideoGen"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
{/* Terminal (Multmux) - temporarily hidden until in better working state
|
||||
{tools["Multmux"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["Multmux"]}
|
||||
|
|
@ -774,7 +769,6 @@ export function CustomToolbar() {
|
|||
isSelected={tools["Multmux"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
*/}
|
||||
{tools["Map"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["Map"]}
|
||||
|
|
|
|||
Loading…
Reference in New Issue