Skip to content

Commit 755295f

Browse files
authored
docs(effects): add missing import to the functional effects example (#3867)
1 parent 93ee1db commit 755295f

File tree

1 file changed

+1
-1
lines changed
  • projects/ngrx.io/content/guide/effects

1 file changed

+1
-1
lines changed

projects/ngrx.io/content/guide/effects/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ To create a functional effect, add the `functional: true` flag to the effect con
186186

187187
<code-example header="actors.effects.ts">
188188
import { inject } from '@angular/core';
189-
import { catchError, exhaustMap, map, of } from 'rxjs';
189+
import { catchError, exhaustMap, map, of, tap } from 'rxjs';
190190
import { Actions, createEffect, ofType } from '@ngrx/effects';
191191

192192
import { ActorsService } from './actors.service';

0 commit comments

Comments
 (0)