From eb12da8b82e345be9740b42a593b8ff8e3575f59 Mon Sep 17 00:00:00 2001 From: Strider Wilson Date: Mon, 2 Jun 2025 12:39:40 -0400 Subject: [PATCH] lint --- app/components/chat/BaseChat/BaseChat.tsx | 5 +---- app/lib/stores/settings.ts | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/app/components/chat/BaseChat/BaseChat.tsx b/app/components/chat/BaseChat/BaseChat.tsx index e5cee813..35f4a15b 100644 --- a/app/components/chat/BaseChat/BaseChat.tsx +++ b/app/components/chat/BaseChat/BaseChat.tsx @@ -199,10 +199,7 @@ export const BaseChat = React.forwardRef( } handleSendMessage(event, messageInput); })} - {isArboretumVisible && ( - - )} - + {isArboretumVisible && } )} diff --git a/app/lib/stores/settings.ts b/app/lib/stores/settings.ts index 9d7e73a0..43666b5d 100644 --- a/app/lib/stores/settings.ts +++ b/app/lib/stores/settings.ts @@ -7,9 +7,9 @@ export const showArboretumStore = atom(false); // Create a hook for easier usage in React components export function useArboretumVisibility() { const isVisible = useStore(showArboretumStore); - + return { isArboretumVisible: isVisible, - toggleArboretum: () => showArboretumStore.set(!isVisible) + toggleArboretum: () => showArboretumStore.set(!isVisible), }; }