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, }; };