hotfix for page load actions

This commit is contained in:
Nikhil Nandagopal 2020-10-20 13:15:57 +05:30
parent eb44bf2442
commit f5abf29cea

View File

@ -621,7 +621,8 @@ function* executePageLoadAction(pageAction: PageAction) {
PerformanceTransactionName.EXECUTE_PAGE_LOAD_ACTIONS,
);
const pageId = yield select(getCurrentPageId);
const currentApp: ApplicationPayload = yield select(getCurrentApplication);
const currentApp: ApplicationPayload = yield select(getCurrentApplication) ||
{};
yield put(executeApiActionRequest({ id: pageAction.id }));
const params: Property[] = yield call(
getActionParams,