diff --git a/app/components/home.tsx b/app/components/home.tsx
index e76b96b3..c544f71b 100644
--- a/app/components/home.tsx
+++ b/app/components/home.tsx
@@ -400,7 +400,10 @@ export function Home() {
}
- onClick={() => setOpenSettings(!openSettings)}
+ onClick={() => {
+ setOpenSettings(true)
+ setShowSideBar(false)
+ }}
/>
@@ -421,7 +424,10 @@ export function Home() {
{openSettings ? (
- setOpenSettings(false)} />
+ {
+ setOpenSettings(false)
+ setShowSideBar(true)
+ }} />
) : (
setShowSideBar(true)} />
)}