Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Joabesv committed Dec 12, 2024
1 parent 4cf2a87 commit f8ae2a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/entrypoints/popup/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ const studentCoefficients = ref<MatriculaStudent | null>(null)
const isFetching = ref(false)
const fetchError = ref<Error | null>(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()
Expand Down

0 comments on commit f8ae2a3

Please sign in to comment.