ALS view state, go back to the state we were * previously in and refresh our data. * * @param {HeapAnalysesClient} heapWorker */ exports.popViewAndRefresh = function (heapWorker) { return async function ({ dispatch }) { dispatch(popView()); await dispatch(refresh.refresh(heapWorker)); }; }; PK