From ab3e591c5625e821fcba242c42e06ca505e4b3c9 Mon Sep 17 00:00:00 2001 From: ixaxtav Date: Thu, 9 Dec 2021 15:31:41 -0500 Subject: [PATCH] few fixes --- src/js/views/payroll.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/views/payroll.js b/src/js/views/payroll.js index 63ae6fe..08499c0 100644 --- a/src/js/views/payroll.js +++ b/src/js/views/payroll.js @@ -2131,7 +2131,7 @@ export const PayrollPeriodDetails = ({ match, history }) => { ) .then((res) => { if (res) { - history.push("/payroll/rating/" + period.id); + history.push("/payroll/report/" + period.id); } }) .catch((e) => Notify.error(e.message || e));