From bdad41f32393dc481574d0e76d20427ff22df0a4 Mon Sep 17 00:00:00 2001 From: Ayangade Adeoluwa <37867493+Irongade@users.noreply.github.com> Date: Thu, 16 Dec 2021 16:13:00 +0100 Subject: [PATCH] Fix merge problems (#9829) --- app/client/src/pages/Editor/QueryEditor/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/client/src/pages/Editor/QueryEditor/index.tsx b/app/client/src/pages/Editor/QueryEditor/index.tsx index 38cfd0f6dc..d05d86bd41 100644 --- a/app/client/src/pages/Editor/QueryEditor/index.tsx +++ b/app/client/src/pages/Editor/QueryEditor/index.tsx @@ -83,7 +83,6 @@ type ReduxStateProps = { isEditorInitialized: boolean; uiComponent: UIComponentTypes; applicationId: string; - pluginId: string; }; type StateAndRouteProps = RouteComponentProps; @@ -287,7 +286,6 @@ const mapStateToProps = (state: AppState, props: any): ReduxStateProps => { isEditorInitialized: getIsEditorInitialized(state), uiComponent, applicationId: getCurrentApplicationId(state), - pluginId: queryAction.pluginId, }; };