@infrab4a/connect-angular 4.3.10 → 4.3.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -934,8 +934,7 @@ class CookieDataPersistence {
934
934
  return of(cookie.get(key));
935
935
  }
936
936
  remove(key) {
937
- cookie.remove(key);
938
- return;
937
+ return of(cookie.remove(key));
939
938
  }
940
939
  set(key, value) {
941
940
  return from(cookie.set(key, value)).pipe(map(() => { }));