chore: disable Multmux, Holon, and MycroZineGenerator tools
Temporarily hiding these tools from context menu and toolbar until they are in a better working state. 🤖 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
d15130a337
commit
84cb5d7bc8
|
|
@ -134,14 +134,18 @@ export function CustomContextMenu(props: TLUiContextMenuProps) {
|
||||||
<TldrawUiMenuItem {...tools.ObsidianNote} />
|
<TldrawUiMenuItem {...tools.ObsidianNote} />
|
||||||
<TldrawUiMenuItem {...tools.Transcription} />
|
<TldrawUiMenuItem {...tools.Transcription} />
|
||||||
<TldrawUiMenuItem {...tools.Embed} />
|
<TldrawUiMenuItem {...tools.Embed} />
|
||||||
|
{/* Holon - temporarily hidden until in better working state
|
||||||
<TldrawUiMenuItem {...tools.Holon} />
|
<TldrawUiMenuItem {...tools.Holon} />
|
||||||
|
*/}
|
||||||
|
{/* Terminal (Multmux) - temporarily hidden until in better working state
|
||||||
<TldrawUiMenuItem {...tools.Multmux} />
|
<TldrawUiMenuItem {...tools.Multmux} />
|
||||||
|
*/}
|
||||||
<TldrawUiMenuItem {...tools.Map} />
|
<TldrawUiMenuItem {...tools.Map} />
|
||||||
<TldrawUiMenuItem {...tools.calendar} />
|
<TldrawUiMenuItem {...tools.calendar} />
|
||||||
<TldrawUiMenuItem {...tools.SlideShape} />
|
<TldrawUiMenuItem {...tools.SlideShape} />
|
||||||
<TldrawUiMenuItem {...tools.VideoChat} />
|
<TldrawUiMenuItem {...tools.VideoChat} />
|
||||||
<TldrawUiMenuItem {...tools.FathomMeetings} />
|
<TldrawUiMenuItem {...tools.FathomMeetings} />
|
||||||
<TldrawUiMenuItem {...tools.MycroZineGenerator} />
|
{/* MycroZineGenerator temporarily disabled for debugging */}
|
||||||
</TldrawUiMenuSubmenu>
|
</TldrawUiMenuSubmenu>
|
||||||
</TldrawUiMenuGroup>
|
</TldrawUiMenuGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -695,6 +695,7 @@ export function CustomToolbar() {
|
||||||
isSelected={tools["Markdown"].id === editor.getCurrentToolId()}
|
isSelected={tools["Markdown"].id === editor.getCurrentToolId()}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
{/* MycroZine Generator temporarily disabled for debugging
|
||||||
{tools["MycroZineGenerator"] && (
|
{tools["MycroZineGenerator"] && (
|
||||||
<TldrawUiMenuItem
|
<TldrawUiMenuItem
|
||||||
{...tools["MycroZineGenerator"]}
|
{...tools["MycroZineGenerator"]}
|
||||||
|
|
@ -705,6 +706,7 @@ export function CustomToolbar() {
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
*/}
|
||||||
{tools["Prompt"] && (
|
{tools["Prompt"] && (
|
||||||
<TldrawUiMenuItem
|
<TldrawUiMenuItem
|
||||||
{...tools["Prompt"]}
|
{...tools["Prompt"]}
|
||||||
|
|
@ -729,6 +731,7 @@ export function CustomToolbar() {
|
||||||
isSelected={tools["Transcription"].id === editor.getCurrentToolId()}
|
isSelected={tools["Transcription"].id === editor.getCurrentToolId()}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
{/* Holon - temporarily hidden until in better working state
|
||||||
{tools["Holon"] && (
|
{tools["Holon"] && (
|
||||||
<TldrawUiMenuItem
|
<TldrawUiMenuItem
|
||||||
{...tools["Holon"]}
|
{...tools["Holon"]}
|
||||||
|
|
@ -737,6 +740,7 @@ export function CustomToolbar() {
|
||||||
isSelected={tools["Holon"].id === editor.getCurrentToolId()}
|
isSelected={tools["Holon"].id === editor.getCurrentToolId()}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
*/}
|
||||||
{tools["FathomMeetings"] && (
|
{tools["FathomMeetings"] && (
|
||||||
<TldrawUiMenuItem
|
<TldrawUiMenuItem
|
||||||
{...tools["FathomMeetings"]}
|
{...tools["FathomMeetings"]}
|
||||||
|
|
@ -761,6 +765,7 @@ export function CustomToolbar() {
|
||||||
isSelected={tools["VideoGen"].id === editor.getCurrentToolId()}
|
isSelected={tools["VideoGen"].id === editor.getCurrentToolId()}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
{/* Terminal (Multmux) - temporarily hidden until in better working state
|
||||||
{tools["Multmux"] && (
|
{tools["Multmux"] && (
|
||||||
<TldrawUiMenuItem
|
<TldrawUiMenuItem
|
||||||
{...tools["Multmux"]}
|
{...tools["Multmux"]}
|
||||||
|
|
@ -769,6 +774,7 @@ export function CustomToolbar() {
|
||||||
isSelected={tools["Multmux"].id === editor.getCurrentToolId()}
|
isSelected={tools["Multmux"].id === editor.getCurrentToolId()}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
*/}
|
||||||
{tools["Map"] && (
|
{tools["Map"] && (
|
||||||
<TldrawUiMenuItem
|
<TldrawUiMenuItem
|
||||||
{...tools["Map"]}
|
{...tools["Map"]}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue