This commit is contained in:
Strider Wilson 2025-06-02 12:39:40 -04:00
parent a434731d3a
commit eb12da8b82
2 changed files with 3 additions and 6 deletions

View File

@ -199,10 +199,7 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
} }
handleSendMessage(event, messageInput); handleSendMessage(event, messageInput);
})} })}
{isArboretumVisible && ( {isArboretumVisible && <Arboretum />}
<Arboretum />
)}
</> </>
)} )}
</div> </div>

View File

@ -10,6 +10,6 @@ export function useArboretumVisibility() {
return { return {
isArboretumVisible: isVisible, isArboretumVisible: isVisible,
toggleArboretum: () => showArboretumStore.set(!isVisible) toggleArboretum: () => showArboretumStore.set(!isVisible),
}; };
} }