diff --git a/apps/frontend/src/renderer/components/Roadmap.tsx b/apps/frontend/src/renderer/components/Roadmap.tsx
index 15ac182a..1a5307e7 100644
--- a/apps/frontend/src/renderer/components/Roadmap.tsx
+++ b/apps/frontend/src/renderer/components/Roadmap.tsx
@@ -105,7 +105,7 @@ export function Roadmap({ projectId, onGoToTask }: RoadmapProps) {
/>
{/* Content */}
-
+
{/* Kanban View */}
-
+
{/* Phases View */}
-
+
{roadmap.phases.map((phase: RoadmapPhase, index: number) => (
{/* All Features View */}
-
+
{roadmap.features.map((feature: RoadmapFeature) => (
{/* By Priority View */}
-
+
{['must', 'should', 'could', 'wont'].map((priority: string) => {
const features = roadmap.features.filter((f: RoadmapFeature) => f.priority === priority);