You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue was caused when a source does not emit a thruthy value. This is e.g. the case for Endpoints which send an empty response back, e.g. after a delete-operation.
The problem can easiliy be simulated by
```ts
rxStateful$(
timer(1000).pipe(switchMap(() => of(null)))
)
```
* #111 fix(rx-stateful): fix not emitting subsequent values
The issue was caused when a source does not emit a thruthy value. This is e.g. the case for Endpoints which send an empty response back, e.g. after a delete-operation.
The problem can easiliy be simulated by
```ts
rxStateful$(
timer(1000).pipe(switchMap(() => of(null)))
)
```
* chore: ehnance demos
Version 1.7.0
Following code does not emit subsequent states:
The text was updated successfully, but these errors were encountered: