Skip to content

Commit

Permalink
fix review findings
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusAquarius committed Sep 29, 2023
1 parent bf609e7 commit 1c46a5a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Store } from '@ngrx/store';
import { selectCurrentProductDetails } from '@app/catalog/product/store/product.selectors';
import { navigate } from '@app/shared/navigation/navigation.actions';
import { StateWithCatalog } from '@app/catalog/store/catalog.reducer';
import { loadProductDetails, loadProducts } from '@app/catalog/product/store/product.actions';
import { loadProductDetails } from '@app/catalog/product/store/product.actions';
import { ActivatedRoute } from '@angular/router';

@Component({
Expand Down
1 change: 0 additions & 1 deletion src/app/catalog/product/store/product.effects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { Action } from '@ngrx/store';
import { Observable, of, throwError } from 'rxjs';

import { ProductService } from '@app/catalog/product/services/product.service';
import { navigate } from '@app/shared/navigation/navigation.actions';
import { ProductTestData } from '@models/product.testdata';
import {
loadProductDetails,
Expand Down
2 changes: 1 addition & 1 deletion src/app/catalog/product/store/product.effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import { Injectable } from '@angular/core';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { EMPTY, of } from 'rxjs';
import { EMPTY } from 'rxjs';
import { catchError, map, switchMap } from 'rxjs/operators';

import {
Expand Down

0 comments on commit 1c46a5a

Please sign in to comment.