diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx
index 47df45c..90dc217 100644
--- a/app/(tabs)/index.tsx
+++ b/app/(tabs)/index.tsx
@@ -436,75 +436,73 @@ export default function HomeScreen() {
) : (
- <>
-
- No active sprint right now.
-
-
-
-
- Tasks with upcoming deadlines
-
-
- {upcomingDeadlineTasks.length > 0 ? (
- upcomingDeadlineTasks.map((task) => (
-
- router.push({
- pathname: '/task/viewDetailsTask',
- params: { tId: task.tId },
- })
- }
- >
- {task.title}
- {task.description ? (
-
- {task.description}
-
- ) : null}
-
- {task.subjectTitle} • {task.assignmentTitle} • {formatDate(task.deadline)}
-
-
- {
- event.stopPropagation();
- Alert.alert(
- 'Complete task',
- 'Mark this task as completed?',
- [
- {
- text: 'Cancel',
- style: 'cancel',
- },
- {
- text: 'Complete',
- onPress: () => {
- void handleTaskCompletion(task);
- },
- },
- ]
- );
- }}
- >
-
- {completingTaskId === task.tId ? 'Completing...' : 'Mark as completed'}
-
-
-
- ))
- ) : (
- No upcoming task deadlines.
- )}
-
- >
+
+ No active sprint right now.
+
)}
+
+
+
+ Tasks with upcoming deadlines
+
+
+ {upcomingDeadlineTasks.length > 0 ? (
+ upcomingDeadlineTasks.map((task) => (
+
+ router.push({
+ pathname: '/task/viewDetailsTask',
+ params: { tId: task.tId },
+ })
+ }
+ >
+ {task.title}
+ {task.description ? (
+
+ {task.description}
+
+ ) : null}
+
+ {task.subjectTitle} • {task.assignmentTitle} • {formatDate(task.deadline)}
+
+
+ {
+ event.stopPropagation();
+ Alert.alert(
+ 'Complete task',
+ 'Mark this task as completed?',
+ [
+ {
+ text: 'Cancel',
+ style: 'cancel',
+ },
+ {
+ text: 'Complete',
+ onPress: () => {
+ void handleTaskCompletion(task);
+ },
+ },
+ ]
+ );
+ }}
+ >
+
+ {completingTaskId === task.tId ? 'Completing...' : 'Mark as completed'}
+
+
+
+ ))
+ ) : (
+ No upcoming task deadlines.
+ )}
+
);