From 76d8c5bca135f44ea8aafd905f6bfa2ae947c941 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Mon, 20 Nov 2023 14:41:43 +0530 Subject: [PATCH] chore: removed unused code --- frontend/src/pages/Contacts.vue | 8 -------- 1 file changed, 8 deletions(-) diff --git a/frontend/src/pages/Contacts.vue b/frontend/src/pages/Contacts.vue index bbbfc819..ae871129 100644 --- a/frontend/src/pages/Contacts.vue +++ b/frontend/src/pages/Contacts.vue @@ -177,12 +177,4 @@ const columns = [ width: '8rem', }, ] - -onMounted(() => { - const el = document.querySelector('.router-link-active') - if (el) - setTimeout(() => { - el.scrollIntoView({ behavior: 'smooth', block: 'start' }) - }) -})