Warning: Undefined array key "url" in /volume1/web_packages/wordpress/wp-content/plugins/wpforms-lite/src/Forms/IconChoices.php on line 124 Warning: Undefined array key "path" in /volume1/web_packages/wordpress/wp-content/plugins/wpforms-lite/src/Forms/IconChoices.php on line 125 TypeError: You provided an invalid object where a stream was expected. You can provide an Observable, Promise, Array, or Iterable – Sarmad Aljazrawi

TypeError: You provided an invalid object where a stream was expected. You can provide an Observable, Promise, Array, or Iterable

Its all related to from where you imports:

 

Wrong:

import { from } from 'rxjs/internal/observable/from';
import { Observable } from 'rxjs';

Correct:

import { Observable } from 'rxjs';
Tags:

Add a Comment