Skip to content

Commit

Permalink
Merge pull request #516 from USEPA/feature/apply-code-formatting-updates
Browse files Browse the repository at this point in the history
Feature/apply code formatting updates
  • Loading branch information
courtneymyers authored Dec 20, 2024
2 parents 710a8f3 + 8f830d6 commit 9aebcf2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Set environment variables
env:
APP_VERSION: 6.0.1
APP_VERSION: 7.0.0
CLOUD_SPACE: production
SERVER_BASE_PATH: /csb
FORMIO_BASE_URL: ${{ secrets.FORMIO_BASE_URL }}
Expand Down
2 changes: 1 addition & 1 deletion app/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint": "eslint .",
"preview": "vite preview"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion app/server/app/utilities/errorHandler.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const log = require("./logger");
const log = require("../utilities/logger");

const { NODE_ENV, CLIENT_URL, SERVER_URL } = process.env;
const url = NODE_ENV === "development" ? CLIENT_URL : SERVER_URL;
Expand Down

0 comments on commit 9aebcf2

Please sign in to comment.