Skip to content

Commit 7e2afec

Browse files
committed
minor fixes
1 parent c828ac5 commit 7e2afec

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

src/app/app.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Component } from '@angular/core';
33
@Component({
44
selector: 'app-root',
55
templateUrl: './app.component.html',
6-
styleUrls: ['./app.component.css']
6+
styleUrls: ['./app.component.css'],
77
})
88
export class AppComponent {
99
title = 'app works!';

src/app/app.module.ts

-4
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,13 @@ import { APP_ROUTES } from './app.routes';
77

88
import { AuthModule } from './auth/auth.module';
99
import { AppComponent } from './app.component';
10-
import { LoginComponent } from './auth/login/login.component';
11-
import { RegisterComponent } from './auth/register/register.component';
1210
import { AuthService } from './auth/auth.service';
1311
import { HttpOptionsService, UserService } from './common-services';
1412

1513

1614
@NgModule({
1715
declarations: [
1816
AppComponent,
19-
LoginComponent,
20-
RegisterComponent,
2117
],
2218
imports: [
2319
BrowserModule,

src/app/common-services/user.service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Injectable } from '@angular/core';
2-
import { Http, Response} from '@angular/http';
2+
import { Http, Response } from '@angular/http';
33
import { Observable } from 'rxjs/Observable';
44
import { Subject } from 'rxjs/Subject';
55

0 commit comments

Comments
 (0)