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
0111f04db2
commit
c4cb97c0bf
|
|
@ -134,14 +134,18 @@ export function CustomContextMenu(props: TLUiContextMenuProps) {
|
|||
<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} />
|
||||
<TldrawUiMenuItem {...tools.MycroZineGenerator} />
|
||||
{/* MycroZineGenerator temporarily disabled for debugging */}
|
||||
</TldrawUiMenuSubmenu>
|
||||
</TldrawUiMenuGroup>
|
||||
|
||||
|
|
|
|||
|
|
@ -695,6 +695,7 @@ export function CustomToolbar() {
|
|||
isSelected={tools["Markdown"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
{/* MycroZine Generator temporarily disabled for debugging
|
||||
{tools["MycroZineGenerator"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["MycroZineGenerator"]}
|
||||
|
|
@ -705,6 +706,7 @@ export function CustomToolbar() {
|
|||
}
|
||||
/>
|
||||
)}
|
||||
*/}
|
||||
{tools["Prompt"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["Prompt"]}
|
||||
|
|
@ -729,6 +731,7 @@ export function CustomToolbar() {
|
|||
isSelected={tools["Transcription"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
{/* Holon - temporarily hidden until in better working state
|
||||
{tools["Holon"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["Holon"]}
|
||||
|
|
@ -737,6 +740,7 @@ export function CustomToolbar() {
|
|||
isSelected={tools["Holon"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
*/}
|
||||
{tools["FathomMeetings"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["FathomMeetings"]}
|
||||
|
|
@ -761,6 +765,7 @@ export function CustomToolbar() {
|
|||
isSelected={tools["VideoGen"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
{/* Terminal (Multmux) - temporarily hidden until in better working state
|
||||
{tools["Multmux"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["Multmux"]}
|
||||
|
|
@ -769,6 +774,7 @@ export function CustomToolbar() {
|
|||
isSelected={tools["Multmux"].id === editor.getCurrentToolId()}
|
||||
/>
|
||||
)}
|
||||
*/}
|
||||
{tools["Map"] && (
|
||||
<TldrawUiMenuItem
|
||||
{...tools["Map"]}
|
||||
|
|
|
|||
Loading…
Reference in New Issue