Skip to content

Commit

Permalink
update types.ts file path
Browse files Browse the repository at this point in the history
  • Loading branch information
rjarman committed Oct 27, 2020
1 parent 914399f commit 6d1c3df
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/auth/auth.page.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component } from '@angular/core';
import { AuthService } from '../services/auth.service';
import { Login } from '../shared/types';
import { Login } from '../types';
import { FormBuilder } from '@angular/forms';
@Component({
selector: 'app-auth',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { environment } from 'src/environments/environment';
import { Login } from '../shared/types';
import { Login } from '../types';
import { CookieService } from 'ngx-cookie-service';
import { Router } from '@angular/router';

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/tabs/others/others.page.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component } from '@angular/core';
import { TabsService } from 'src/app/services/tabs.service';
import { HouseOwnersData } from 'src/app/shared/types';
import { HouseOwnersData } from 'src/app/types';
import { environment } from 'src/environments/environment';
import { ModalController } from '@ionic/angular';
import { DetailsPage } from '../details/details.page';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/tabs/rented/rented.page.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component } from '@angular/core';
import { ModalController } from '@ionic/angular';
import { DetailsPage } from '../details/details.page';
import { HouseOwnersData } from 'src/app/shared/types';
import { HouseOwnersData } from 'src/app/types';
import { environment } from 'src/environments/environment';
import { TabsService } from 'src/app/services/tabs.service';

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/tabs/self/self.page.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component } from '@angular/core';
import { HouseOwnersData } from 'src/app/shared/types';
import { HouseOwnersData } from 'src/app/types';
import { environment } from 'src/environments/environment';
import { TabsService } from 'src/app/services/tabs.service';
import { Router } from '@angular/router';
Expand Down
File renamed without changes.

0 comments on commit 6d1c3df

Please sign in to comment.