Update index.html
Browse files- index.html +3 -3
index.html
CHANGED
@@ -148,9 +148,9 @@
|
|
148 |
const taskList = document.getElementById('task-list');
|
149 |
|
150 |
const initialRawTasks = [
|
151 |
-
{ text: "Write the Unit Test", completed:
|
152 |
-
{ text: "Check the PR", completed:
|
153 |
-
{ text: "Debug the GPU trace", completed:
|
154 |
];
|
155 |
|
156 |
// Helper function to ensure task objects have all necessary properties
|
|
|
148 |
const taskList = document.getElementById('task-list');
|
149 |
|
150 |
const initialRawTasks = [
|
151 |
+
{ text: "Write the Unit Test", completed: true },
|
152 |
+
{ text: "Check the PR", completed: true },
|
153 |
+
{ text: "Debug the GPU trace", completed: true }
|
154 |
];
|
155 |
|
156 |
// Helper function to ensure task objects have all necessary properties
|