diff --git a/src/renderer/App.tsx b/src/renderer/App.tsx index 5fdcff7fd31a748e10b07f14caad00541aaeecee..f831f9ab2f2f5dc551fb81f21a66233ed61246bb 100644 --- a/src/renderer/App.tsx +++ b/src/renderer/App.tsx @@ -201,7 +201,11 @@ export default function App() { }} > <div> </div> - <DraggableElipsis notifyOnMove={onOutputDrawerDrag} /> + {logsDrawerOpen ? ( + <DraggableElipsis notifyOnMove={onOutputDrawerDrag} /> + ) : ( + <> </> + )} <IconButton sx={{ padding: 0, margin: 0, minHeight: 0 }} onClick={() => setLogsDrawerOpen(!logsDrawerOpen)}