From e8354e9781954b3f0d0009963f6723db612dea05 Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Wed, 25 Feb 2026 18:14:45 +0530 Subject: [PATCH] fix: student home page issue when not enrolled in any batch --- frontend/src/pages/Home/StudentHome.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/Home/StudentHome.vue b/frontend/src/pages/Home/StudentHome.vue index 85491a12..9c02893c 100644 --- a/frontend/src/pages/Home/StudentHome.vue +++ b/frontend/src/pages/Home/StudentHome.vue @@ -108,7 +108,7 @@
{{ - myBatches.data?.[0].students.includes(user.data?.name) + myBatches.data?.[0].students?.includes(user.data?.name) ? __('My Batches') : __('Our Upcoming Batches') }}