From b1be568991de6cad78bc6fbe7dcbeb9be7227fb5 Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Thu, 6 Nov 2025 12:23:18 +0530 Subject: [PATCH] fix: removed uncalled function --- frontend/src/pages/Profile.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/pages/Profile.vue b/frontend/src/pages/Profile.vue index ac1823aa..c5c4eb44 100644 --- a/frontend/src/pages/Profile.vue +++ b/frontend/src/pages/Profile.vue @@ -177,7 +177,6 @@ watch( () => props.username, () => { profile.reload() - getProfileRoles() } ) @@ -194,7 +193,6 @@ const hasHigherAccess = () => { } const isEvaluatorOrModerator = () => { - console.log(profile.data) return ( profile.data?.roles.filter( (row) => row.role === 'Moderator' || row.role === 'Evaluator'