Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: TTA-174 update to check if it is legacy
  • Loading branch information
mmaquina committed Oct 25, 2022
commit 20f7df236b91893f1dec1085d43a62de9ecca732
2 changes: 1 addition & 1 deletion src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { V2RedirectComponent } from './modules/v2-redirect/v2-redirect.component
import { EnvironmentType } from 'src/environments/enum';
import { environment } from 'src/environments/environment';

const isNotLegacy: boolean = environment.production !== EnvironmentType.TT_DEV;
const isNotLegacy: boolean = environment.production !== EnvironmentType.TT_PROD_LEGACY;
let routes: Routes;

if (isNotLegacy) {
Expand Down