Refactor: Linting errors

This commit is contained in:
Suven-p 2024-11-16 06:56:53 +05:45
parent 754254c4b1
commit 9b9233f192

View file

@ -201,7 +201,9 @@ const router = createRouter({
router.beforeEach((to, from) => {
// Check if redirectedFrom is defined to check if this function has already been run
// Without this check, the router will be stuck in an infinite loop
if (to.redirectedFrom) return;
if (to.redirectedFrom) {
return;
}
// If the user is navigating to same page but to.query is empty, they have clicked on the same link
// For example: Clicked on Add monitor twice