diff --git a/app/client/cypress.env.json b/app/client/cypress.env.json index f117283226..de4d427103 100644 --- a/app/client/cypress.env.json +++ b/app/client/cypress.env.json @@ -1,7 +1,5 @@ { "MySQL":1, "Mongo":1, - "Edition": 0, - "USERNAME": "tol@gmail.com", - "PASSWORD":"password" + "Edition": 0 } diff --git a/app/client/src/pages/Editor/index.tsx b/app/client/src/pages/Editor/index.tsx index 9ec49d264a..3348fb4acf 100644 --- a/app/client/src/pages/Editor/index.tsx +++ b/app/client/src/pages/Editor/index.tsx @@ -14,7 +14,6 @@ import { getIsEditorLoading, getIsPublishingApplication, getPublishingError, - selectCurrentApplicationIcon, } from "selectors/editorSelectors"; import { initEditor, @@ -77,7 +76,6 @@ type EditorProps = { collabStartSharingPointerEvent: (pageId: string) => void; collabStopSharingPointerEvent: (pageId?: string) => void; pageLevelSocketRoomId: string; - currentAppIcon?: string; }; type Props = EditorProps & RouteComponentProps; @@ -255,7 +253,6 @@ const mapStateToProps = (state: AppState) => ({ currentPageId: getCurrentPageId(state), isPageLevelSocketConnected: getIsPageLevelSocketConnected(state), loadingGuidedTour: loading(state), - currentAppIcon: selectCurrentApplicationIcon(state), }); const mapDispatchToProps = (dispatch: any) => { diff --git a/app/client/src/selectors/editorSelectors.tsx b/app/client/src/selectors/editorSelectors.tsx index 0e68d6cd6e..fc434306e3 100644 --- a/app/client/src/selectors/editorSelectors.tsx +++ b/app/client/src/selectors/editorSelectors.tsx @@ -138,9 +138,6 @@ export const getCurrentApplicationId = (state: AppState) => export const selectCurrentApplicationSlug = (state: AppState) => state.ui.applications.currentApplication?.slug || PLACEHOLDER_APP_SLUG; -export const selectCurrentApplicationIcon = (state: AppState) => - state.ui.applications.currentApplication?.icon; - export const selectApplicationVersion = (state: AppState) => state.ui.applications.currentApplication?.applicationVersion || ApplicationVersion.DEFAULT;