Skip to content

Commit

Permalink
Move cart to the features files
Browse files Browse the repository at this point in the history
  • Loading branch information
belsman committed Jan 11, 2024
1 parent cf29e25 commit 666f6c4
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import { GraphQLModule } from './graphql.module';
import { ProductsModule } from './features/products/products.module';
import { SharedModule } from './shared/shared.module';
import { CheckoutModule } from './features/checkout/checkout.module';
import { CartModule } from './cart/cart.module';
import { CartModule } from './features/cart/cart.module';

export function HttpLoaderFactory(http: HttpClient) {
return new TranslateHttpLoader(http, './assets/i18n/', '.json');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CartLayerItemComponent } from './components/cart-layer-item/cart-layer-item.component';
import { CartLayerContentsComponent } from './components/cart-layer-contents/cart-layer-contents.component';
import { SharedModule } from '../shared/shared.module';
import { SharedModule } from '../../shared/shared.module';
import {
VCLFormControlGroupModule,
VCLInputModule,
Expand Down

0 comments on commit 666f6c4

Please sign in to comment.