diff --git a/package-lock.json b/package-lock.json index 1911b38f3..338842949 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@asl/pages", - "version": "31.5.12", + "version": "31.5.15", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@asl/pages", - "version": "31.5.12", + "version": "31.5.15", "license": "MIT", "dependencies": { "@asl/projects": "^15.6.1", diff --git a/package.json b/package.json index e1fb31cbe..560cdf7c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@asl/pages", - "version": "31.5.14", + "version": "31.5.15", "description": "", "main": "index.js", "style": "pages/common/assets/sass/style.scss", diff --git a/pages/pil/dashboard/index.js b/pages/pil/dashboard/index.js index 0cb16bec5..24d23d755 100644 --- a/pages/pil/dashboard/index.js +++ b/pages/pil/dashboard/index.js @@ -116,7 +116,7 @@ module.exports = settings => { app.use('/confirm', confirm({ sendData })); app.get('/success', success()); - app.get((req, res) => res.sendResponse()); + app.get('/', (req, res) => res.sendResponse()); return app; };