From f8ae2a353d9b1bc168805848df59af9d6ffb7dcc Mon Sep 17 00:00:00 2001 From: Joabesv Date: Thu, 12 Dec 2024 15:13:14 -0300 Subject: [PATCH] remove comments --- src/entrypoints/popup/App.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/entrypoints/popup/App.vue b/src/entrypoints/popup/App.vue index d5b6c71..5ef20e3 100644 --- a/src/entrypoints/popup/App.vue +++ b/src/entrypoints/popup/App.vue @@ -13,9 +13,8 @@ const studentCoefficients = ref(null) const isFetching = ref(false) const fetchError = ref(null) -// Use watchEffect to trigger fetch when student data is available watchEffect(() => { - // Only fetch if student data exists and has the required properties + // Only fetch if student data exists if (student.value?.ra && student.value?.login) { isFetching.value = true fetchStudentCoefficients()