Fix merge problems (#9829)

This commit is contained in:
Ayangade Adeoluwa 2021-12-16 16:13:00 +01:00 committed by GitHub
parent f62c8a62a4
commit bdad41f323
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,7 +83,6 @@ type ReduxStateProps = {
isEditorInitialized: boolean;
uiComponent: UIComponentTypes;
applicationId: string;
pluginId: string;
};
type StateAndRouteProps = RouteComponentProps<QueryEditorRouteParams>;
@ -287,7 +286,6 @@ const mapStateToProps = (state: AppState, props: any): ReduxStateProps => {
isEditorInitialized: getIsEditorInitialized(state),
uiComponent,
applicationId: getCurrentApplicationId(state),
pluginId: queryAction.pluginId,
};
};