Skip to content

Commit

Permalink
rebase-issue: fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian-Haehnlein committed Jan 9, 2020
1 parent 8dff3af commit f1204c2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/app/extensions/seo/store/seo/seo.effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,17 @@ import { TranslateService } from '@ngx-translate/core';
import { mapToParam, ofRoute } from 'ngrx-router';
import { debounce, distinctUntilKeyChanged, first, map, switchMap, tap } from 'rxjs/operators';

import { categoryRoute } from 'ish-core/custom-routes/category.route';
import { generateProductRoute, productRoute } from 'ish-core/custom-routes/product.route';
import { ProductHelper } from 'ish-core/models/product/product.helper';
import { SeoAttributes } from 'ish-core/models/seo-attribute/seo-attribute.model';
import { generateProductRoute } from 'ish-core/route-formats/product.route';
import { getSelectedContentPage } from 'ish-core/store/content/pages';
import { CategoriesActionTypes } from 'ish-core/store/shopping/categories';
import { getSelectedCategory } from 'ish-core/store/shopping/categories/categories.selectors';
import { getSelectedProduct } from 'ish-core/store/shopping/products';
import { mapToPayload, mapToProperty, whenTruthy } from 'ish-core/utils/operators';

import { SeoActionTypes, SetSeoAttributes } from './seo.actions';
import { categoryRoute } from 'ish-core/custom-routes/category.route';
import { productRoute } from 'ish-core/custom-routes/product.route';

@Injectable()
export class SeoEffects {
Expand Down

0 comments on commit f1204c2

Please sign in to comment.