diff --git a/src/app/core/services/auth.service.ts b/src/app/core/services/auth.service.ts index deb3afa..28c207d 100644 --- a/src/app/core/services/auth.service.ts +++ b/src/app/core/services/auth.service.ts @@ -4,7 +4,7 @@ import { BehaviorSubject, Observable, throwError } from 'rxjs'; import { map, tap, catchError } from 'rxjs/operators'; import { Router } from '@angular/router'; import { User } from '../models/user.model'; -import { environment } from '../../../environments/environment.development'; +import { environment } from '../../../environments/environment'; import { isPlatformBrowser } from '@angular/common'; @Injectable({ diff --git a/src/app/core/services/plan.service.ts b/src/app/core/services/plan.service.ts index 447f5d8..1dfcf31 100644 --- a/src/app/core/services/plan.service.ts +++ b/src/app/core/services/plan.service.ts @@ -1,7 +1,7 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { map, Observable, pipe, shareReplay, Subject, take, tap } from 'rxjs'; -import { environment } from '../../../environments/environment.development'; +import { environment } from '../../../environments/environment'; import { GamePlan, PokemonFamilyEntry } from '../models/plan.model'; import { PokemonService } from './pokemon.service'; diff --git a/src/app/core/services/pokemon.service.ts b/src/app/core/services/pokemon.service.ts index 795d48e..af355e1 100644 --- a/src/app/core/services/pokemon.service.ts +++ b/src/app/core/services/pokemon.service.ts @@ -2,7 +2,7 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { catchError, concatMap, map, Observable, of, pipe, shareReplay, tap } from 'rxjs'; import { Pokemon, PokemonEncounter } from '../models/pokemon.model'; -import { environment } from '../../../environments/environment.development'; +import { environment } from '../../../environments/environment'; import { comparePfics } from '../utils/pfic-utils'; @Injectable({