Index: backend/controllers/taskController.js
===================================================================
--- backend/controllers/taskController.js	(revision c074b6bf57e6ede73e69499a6819136bd3739c29)
+++ backend/controllers/taskController.js	(revision 67a391e15351f49dc0d0370b70d1db488feaf98e)
@@ -3,36 +3,29 @@
 
 const getTaskByDate = async (req, res) => {
-  // const { date } = req.params;
-
   try {
     const now = new Date();
 
-    // Get the current date parts from UTC
     const year = now.getUTCFullYear();
     const month = now.getUTCMonth();
     const day = now.getUTCDate();
 
-    // Determine the effective day in UTC
     let effectiveDay = day;
     if (now.getUTCHours() < 7) {
-      // If it's before 7 AM UTC, use yesterday's UTC date
       effectiveDay = day - 1;
     }
 
-    // Create the start date object directly from UTC parts
     const startOfEffectiveDay = new Date(
       Date.UTC(year, month, effectiveDay, 0, 0, 0, 0)
     );
 
-    // Create the end date object
     const startOfNextDay = new Date(startOfEffectiveDay);
     startOfNextDay.setUTCDate(startOfEffectiveDay.getUTCDate() + 1);
 
-    console.log(
-      "Querying between (UTC dates):",
-      startOfEffectiveDay.toISOString(),
-      "and",
-      startOfNextDay.toISOString()
-    );
+    // console.log(
+    //   "Querying between (UTC dates):",
+    //   startOfEffectiveDay.toISOString(),
+    //   "and",
+    //   startOfNextDay.toISOString()
+    // );
 
     let tasks = await prisma.challenges.findMany({
@@ -42,5 +35,5 @@
           lt: startOfNextDay,
         },
-        // expired: false,
+        expired: false,
       },
       include: {
@@ -355,5 +348,5 @@
       return res.status(200).json({
         success: true,
-        message: "Task solved successfully!",
+        message: "Challenge solved successfully!",
         scoreAwarded: totalScore,
         newTotalPoints: responseUser.points,
Index: backend/scripts/resetDailyTaskId.js
===================================================================
--- backend/scripts/resetDailyTaskId.js	(revision c074b6bf57e6ede73e69499a6819136bd3739c29)
+++ backend/scripts/resetDailyTaskId.js	(revision 67a391e15351f49dc0d0370b70d1db488feaf98e)
@@ -4,25 +4,19 @@
 async function getTodaysChallenges() {
   try {
-    // FIX: Work entirely in UTC to avoid all timezone issues.
     const now = new Date();
 
-    // Get the current date parts from UTC
     const year = now.getUTCFullYear();
     const month = now.getUTCMonth();
     const day = now.getUTCDate();
 
-    // Determine the effective day in UTC
     let effectiveDay = day;
     if (now.getUTCHours() < 7) {
-      // If it's before 7 AM UTC, use yesterday's UTC date
       effectiveDay = day - 1;
     }
 
-    // Create the start date object directly from UTC parts
     const startOfEffectiveDay = new Date(
       Date.UTC(year, month, effectiveDay, 0, 0, 0, 0)
     );
 
-    // Create the end date object
     const startOfNextDay = new Date(startOfEffectiveDay);
     startOfNextDay.setUTCDate(startOfEffectiveDay.getUTCDate() + 1);
@@ -41,5 +35,5 @@
           lt: startOfNextDay,
         },
-        // expired: false,
+        expired: false,
       },
       include: {
Index: client/src/Dashboard/components/Task.jsx
===================================================================
--- client/src/Dashboard/components/Task.jsx	(revision c074b6bf57e6ede73e69499a6819136bd3739c29)
+++ client/src/Dashboard/components/Task.jsx	(revision 67a391e15351f49dc0d0370b70d1db488feaf98e)
@@ -111,7 +111,4 @@
             try {
               await updateUserDailyTestCaseId(user.id, finalTestCaseIdToStore);
-              console.log(
-                "Successfully updated daily_test_case_id on backend."
-              );
             } catch (error) {
               console.error(
