diff --git a/packages/bruno-app/src/components/Sidebar/Collections/index.js b/packages/bruno-app/src/components/Sidebar/Collections/index.js index e401174dd..496f01456 100644 --- a/packages/bruno-app/src/components/Sidebar/Collections/index.js +++ b/packages/bruno-app/src/components/Sidebar/Collections/index.js @@ -61,7 +61,7 @@ const Collections = () => { /> -
+
{collections && collections.length ? collections.map((c) => { return ( @@ -77,4 +77,3 @@ const Collections = () => { }; export default Collections; - diff --git a/packages/bruno-app/src/components/Sidebar/index.js b/packages/bruno-app/src/components/Sidebar/index.js index 2e68b27f7..bb873df15 100644 --- a/packages/bruno-app/src/components/Sidebar/index.js +++ b/packages/bruno-app/src/components/Sidebar/index.js @@ -15,13 +15,11 @@ const MAX_LEFT_SIDEBAR_WIDTH = 600; const Sidebar = () => { const leftSidebarWidth = useSelector((state) => state.app.leftSidebarWidth); - const [ preferencesOpen, setPreferencesOpen ] = useState(false); + const [preferencesOpen, setPreferencesOpen] = useState(false); const [asideWidth, setAsideWidth] = useState(leftSidebarWidth); - const { - storedTheme - } = useTheme(); + const { storedTheme } = useTheme(); const dispatch = useDispatch(); const [dragging, setDragging] = useState(false); @@ -76,24 +74,23 @@ const Sidebar = () => { setAsideWidth(leftSidebarWidth); }, [leftSidebarWidth]); - return ( - +