From 82609508fafe4029acc6d0bca39c0d19765ea0a0 Mon Sep 17 00:00:00 2001 From: Ishaq <156688098+farrukhishaq@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:04:43 +0100 Subject: [PATCH] path to route added. (#1622) --- package-lock.json | 4 ++-- package.json | 2 +- pages/pil/dashboard/index.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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; };