2022-04-12 10:50:01 +00:00
|
|
|
import { ReduxActionTypes } from "@appsmith/constants/ReduxActionConstants";
|
2020-05-28 18:10:26 +00:00
|
|
|
|
|
|
|
|
export const setHelpDefaultRefinement = (payload: string) => {
|
|
|
|
|
return {
|
|
|
|
|
type: ReduxActionTypes.SET_DEFAULT_REFINEMENT,
|
|
|
|
|
payload,
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
export const setHelpModalVisibility = (payload: boolean) => {
|
|
|
|
|
return {
|
|
|
|
|
type: ReduxActionTypes.SET_HELP_MODAL_OPEN,
|
|
|
|
|
payload,
|
|
|
|
|
};
|
|
|
|
|
};
|