From 9f96ce9dfdba743a1dbb127ce51c6f1b5b132df3 Mon Sep 17 00:00:00 2001 From: kakde-sandeep Date: Thu, 6 Feb 2025 21:19:38 +0530 Subject: [PATCH] fix: Cannot assign to "showSmallCallPopup" because it is a constant --- frontend/src/components/Telephony/ExotelCallUI.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/Telephony/ExotelCallUI.vue b/frontend/src/components/Telephony/ExotelCallUI.vue index 3408d11c..fa47650f 100644 --- a/frontend/src/components/Telephony/ExotelCallUI.vue +++ b/frontend/src/components/Telephony/ExotelCallUI.vue @@ -256,7 +256,7 @@ const { $socket } = globalStore() const callPopupHeader = ref(null) const showCallPopup = ref(false) -const showSmallCallPopup = ref(false) +let showSmallCallPopup = ref(false) function toggleCallPopup() { showCallPopup.value = !showCallPopup.value