From 4d738e2ae8e61756fd17c927e825e628219a59e8 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 4 Jun 2024 15:42:56 -0300 Subject: [PATCH 1/3] Fixed icon not being on the end of the button when its text is not big enough --- .../components/sideBarFolderButtons/index.tsx | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/src/frontend/src/components/sidebarComponent/components/sideBarFolderButtons/index.tsx b/src/frontend/src/components/sidebarComponent/components/sideBarFolderButtons/index.tsx index 5b2b0e1d9..61abf47c1 100644 --- a/src/frontend/src/components/sidebarComponent/components/sideBarFolderButtons/index.tsx +++ b/src/frontend/src/components/sidebarComponent/components/sideBarFolderButtons/index.tsx @@ -261,7 +261,7 @@ const SideBarFoldersButtonsComponent = ({ /> ) : ( - + {item.name} )} @@ -281,21 +281,6 @@ const SideBarFoldersButtonsComponent = ({ /> )} - {/* {index > 0 && ( - - )} */} - - - - - - - - ); -} diff --git a/src/frontend/src/pages/StorePage/index.tsx b/src/frontend/src/pages/StorePage/index.tsx index f105c8c86..2fc401d8a 100644 --- a/src/frontend/src/pages/StorePage/index.tsx +++ b/src/frontend/src/pages/StorePage/index.tsx @@ -29,7 +29,6 @@ import { import { STORE_DESC, STORE_TITLE } from "../../constants/constants"; import { AuthContext } from "../../contexts/authContext"; import { getStoreComponents, getStoreTags } from "../../controllers/API"; -import StoreApiKeyModal from "../../modals/storeApiKeyModal"; import useAlertStore from "../../stores/alertStore"; import useFlowsManagerStore from "../../stores/flowsManagerStore"; import { useStoreStore } from "../../stores/storeStore";