Skip to content

Commit

Permalink
Rem dev logs from prod
Browse files Browse the repository at this point in the history
  • Loading branch information
denkiril committed Oct 24, 2023
1 parent e6c8bdb commit f5f96b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/setenv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const environment = {
MKRF_OPENDATA_APIKEY: '${process.env.MKRF_OPENDATA_APIKEY || ''}',
ASSETS_URL: '${process.env.ASSETS_URL || ''}',
LOGS_PATH: '${process.env.LOGS_PATH || ''}',
IS_DEV: '${Boolean(process.env.IS_DEV)}',
IS_DEV: ${Boolean(process.env.IS_DEV)},
};
`;

Expand Down
2 changes: 1 addition & 1 deletion src/app/components/main-panel/main-panel.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class MainPanelComponent implements OnInit, OnDestroy {
}

private initWithFilterParams(filterParamsInRoute: FilterParams): void {
console.log('initWithFilterParams:', filterParamsInRoute);
// console.log('initWithFilterParams:', filterParamsInRoute);
const filterParams =
this.settingsService.getFilterParams(filterParamsInRoute);

Expand Down

0 comments on commit f5f96b4

Please sign in to comment.