Skip to content

Commit

Permalink
Merge pull request #587 from bcgov/BCPSDEMS-1871-tools
Browse files Browse the repository at this point in the history
remove debug
  • Loading branch information
leewrigh authored Jul 2, 2024
2 parents 505776e + 8b10975 commit e23e9db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-push-diamcornet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: diam-disclosure
name: diam-cornetservice

on:
push:
Expand Down
3 changes: 1 addition & 2 deletions workspace/apps/pidp/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { EnvironmentConfig } from './environments/environment-config.model';
// assets folder, otherwise local development in/outside of a container relies
// on the local environment files.

fetch('./assets/environment.json')
fetch('/assets/environment.json')
.then((response) => response.json())
.then((configMap: EnvironmentConfig) => {
let appConfig = APP_DI_CONFIG;
Expand All @@ -25,7 +25,6 @@ fetch('./assets/environment.json')
})
.catch((err) => {
console.warn('Config error - revert to local: ' + err);
alert('no config');
return APP_DI_CONFIG;
})
.then((appConfig: AppConfig) => {
Expand Down

0 comments on commit e23e9db

Please sign in to comment.