diff --git a/renderer/components/RequestTabPanel/index.js b/renderer/components/RequestTabPanel/index.js
index dc54b6a72..0075cd3de 100644
--- a/renderer/components/RequestTabPanel/index.js
+++ b/renderer/components/RequestTabPanel/index.js
@@ -22,7 +22,7 @@ const RequestTabPanel = () => {
const collections = useSelector((state) => state.collections.collections);
const dispatch = useDispatch();
- let asideWidth = 270;
+ let asideWidth = useSelector((state) => state.app.leftSidebarWidth);
let {
schema
} = useGraphqlSchema('https://api.spacex.land/graphql');
diff --git a/renderer/components/Sidebar/index.js b/renderer/components/Sidebar/index.js
index 0204a156c..b530ec4d9 100644
--- a/renderer/components/Sidebar/index.js
+++ b/renderer/components/Sidebar/index.js
@@ -38,12 +38,16 @@ const Sidebar = () => {