Skip to content

Commit ac4a80d

Browse files
committed
fix: priority for roadmap items
1 parent 43570f2 commit ac4a80d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/components/roadmap/RoadmapCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const RoadmapCard = ({ app, index }) => {
9393
<span
9494
className={`px-2 py-0 inline-flex text-xs font-mono font-semibold rounded-md shadow-sm border ${getPriorityClasses(app.priority || 'Low')}`}
9595
>
96-
Priority: {app.priority || 'Low'}
96+
{app.priority || 'Low'}
9797
</span>
9898
</div>
9999
<h4 className="text-xl font-bold font-mono text-white mb-2 tracking-tight group-hover:text-purple-400 transition-colors">

src/pages/roadmap/RoadmapItemDetailPage.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ const RoadmapItemDetailPage = () => {
156156
</span>
157157
</div>
158158
<div>
159-
<p className="text-gray-400 font-mono font-medium">Priority:</p>
160159
<span
161160
className={`px-2 py-0 inline-flex text-xs font-mono font-semibold rounded-md shadow-sm border ${getPriorityClasses(roadmapItem.priority)}`}
162161
>

0 commit comments

Comments
 (0)