Revert "fix: empty commit"

This reverts commit cef5bed7f6.
This commit is contained in:
Tolulope Adetula 2022-06-09 07:11:53 +01:00
parent cef5bed7f6
commit 4d5fc3b31f
3 changed files with 1 additions and 9 deletions

View File

@ -1,7 +1,5 @@
{
"MySQL":1,
"Mongo":1,
"Edition": 0,
"USERNAME": "tol@gmail.com",
"PASSWORD":"password"
"Edition": 0
}

View File

@ -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<BuilderRouteParams>;
@ -255,7 +253,6 @@ const mapStateToProps = (state: AppState) => ({
currentPageId: getCurrentPageId(state),
isPageLevelSocketConnected: getIsPageLevelSocketConnected(state),
loadingGuidedTour: loading(state),
currentAppIcon: selectCurrentApplicationIcon(state),
});
const mapDispatchToProps = (dispatch: any) => {

View File

@ -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;