Consider the following situation:
this.http.call().pipe(
catchError((error) => {
takeAction();
}),
switchMap((data) => {
performAdditionalTasks();
}),
);
Is it feasible for the switchMap function to be skipped or not executed if the catchError block is activated?