File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ import { RxFor } from '@rx-angular/template/for';
57
57
imports: [RxFor ],
58
58
})
59
59
export class MovieListComponent {
60
- private store = inject ( Store < MovieState > );
60
+ private store = inject < Store <MovieState >>( Store );
61
61
62
62
private state = rxState <{ movies: Movie [] }>(({ set , connect }) => {
63
63
// set initial state
@@ -286,7 +286,7 @@ import { RxFor } from '@rx-angular/template/for';
286
286
imports: [RxFor , ReactiveFormsModule ],
287
287
})
288
288
export class MovieListComponent {
289
- private store = inject ( Store < MovieState > );
289
+ private store = inject < Store <MovieState >>( Store );
290
290
291
291
search = new FormControl <string >();
292
292
@@ -333,7 +333,7 @@ import { RxFor } from '@rx-angular/template/for';
333
333
imports: [RxFor , ReactiveFormsModule ],
334
334
})
335
335
export class MovieListComponent {
336
- private store = inject ( Store < MovieState > );
336
+ private store = inject < Store <MovieState >>( Store );
337
337
338
338
search = new FormControl <string >();
339
339
You can’t perform that action at this time.
0 commit comments