diff --git a/frontend/src/pages/DashboardPage.tsx b/frontend/src/pages/DashboardPage.tsx
index cd818ed..d6b9666 100644
--- a/frontend/src/pages/DashboardPage.tsx
+++ b/frontend/src/pages/DashboardPage.tsx
@@ -202,11 +202,16 @@ export function DashboardPage() {
Up Next
{upNext.map((task, i) => (
-
+
{i + 1}.
HQ-{task.taskNumber}
- {task.title}
-
+
{task.title}
+ {task.priority === "high" || task.priority === "critical" ? (
+
+ {task.priority}
+
+ ) : null}
+
))}
@@ -234,7 +239,7 @@ export function DashboardPage() {
{recentlyCompleted.map((task) => (
-
+
HQ-{task.taskNumber}
{task.completedAt && (
@@ -242,7 +247,7 @@ export function DashboardPage() {
)}
{task.title}
-
+
))}