hi, all `
const processRequests$ = forkJoin(
super.getCmsComponentDataFromServer(searchResultRoute.COMPONENT_ID),
this.httpService.post<SiteRoute>(api.SetRoute, newRoute, null)
)
.concatMap(([searchResultComponentData, newSearchResultRoute]) => {
newRoute.ROUTE_ID = newSearchResultRoute.ROUTE_ID;
return this.attachSearchResultRouteToComponent$(newSearchResultRoute.ROUTE_ID, searchResultComponentData.COMPONENT);
})
.concatMap(() => this.clearCache$())
.concatMap(() => {
this.clearSiteRoutesGroups();
return of(newRoute);
});
return processRequests$;
}
`