From 682e44528816381f18e30722de6f9e627afb10d9 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Wed, 6 Aug 2025 18:22:04 +0530 Subject: [PATCH] refactor: remove redundant logic in updateEvent function in Calendar component --- frontend/src/pages/Calendar.vue | 7 ------- 1 file changed, 7 deletions(-) diff --git a/frontend/src/pages/Calendar.vue b/frontend/src/pages/Calendar.vue index 0a628b1d..c579fe6f 100644 --- a/frontend/src/pages/Calendar.vue +++ b/frontend/src/pages/Calendar.vue @@ -204,13 +204,6 @@ function updateEvent(_event) { color: _event.color, }) - showEventPanel.value = false - - if (showEventPanel.value) { - showEventPanel.value = true - activeEvent.value = _event.id - } - event.value = _event }