Skip to content

Commit

Permalink
fix(client): incorrect includes
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveVanOpstal committed Sep 22, 2016
1 parent e578f51 commit 0fc8559
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/client/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@ import {HttpModule} from '@angular/http';
import {BrowserModule} from '@angular/platform-browser';
import {RouterModule} from '@angular/router';

import {AccountModule} from './account/account.module';
import {ActionsComponent} from './actions.component';
import {AppComponent} from './app.component';
import {ROUTES} from './app.routes';
import {AssetsModule} from './assets/assets.module';
import {AuthModule} from './auth/auth.module';
import {BuildModule} from './build/build.module';
import {ChampionModule} from './champion/champion.module';
import {LoginModule} from './login/login.module';
Expand All @@ -22,7 +20,7 @@ import {SummonerModule} from './summoner/summoner.module';
@NgModule({
imports: [
BrowserModule, CommonModule, RouterModule.forRoot(ROUTES), HttpModule, AssetsModule,
SharedModule, AccountModule, AuthModule, BuildModule, ChampionModule, LoginModule, MainModule,
SharedModule, BuildModule, ChampionModule, LoginModule, MainModule,
RegionModule, SignupModule, SummonerModule
],
declarations: [AppComponent, ActionsComponent],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {inject, TestBed} from '@angular/core/testing';

import {BuildService} from '../services/build.service';
import {BuildService} from '../../services/build.service';

import {AbilitySequenceComponent} from './ability-sequence.component';

Expand Down

0 comments on commit 0fc8559

Please sign in to comment.