## Description EE client build is broken due to not following proper code splitting strategy; one file in particularly didn't get split earlier and changes to that file broke the client build on EE. This PR fixes the issues.
11 lines
365 B
TypeScript
11 lines
365 B
TypeScript
import { AppState } from "@appsmith/reducers";
|
|
|
|
export const getJSPaneConfigSelectedTabIndex = (state: AppState) =>
|
|
state.ui.jsPane.selectedConfigTabIndex;
|
|
|
|
export const getJSPaneResponseSelectedTab = (state: AppState) =>
|
|
state.ui.jsPane.selectedResponseTab;
|
|
|
|
export const getJSPaneResponsePaneHeight = (state: AppState) =>
|
|
state.ui.jsPane.responseTabHeight;
|