We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3266250 commit 8f60543Copy full SHA for 8f60543
src/app/books/books-api.effects.ts
@@ -27,7 +27,7 @@ export class BooksApiEffects {
27
@Effect()
28
createBook$ = this.actions$.pipe(
29
ofType(BooksPageActions.BooksActionTypes.CreateBook),
30
- mergeMap(action =>
+ concatMap(action =>
31
this.booksService.create(action.book).pipe(
32
map(book => new BooksApiActions.BookCreated(book)),
33
catchError(() => EMPTY)
0 commit comments