diff --git a/client/pages/Roadmap.tsx b/client/pages/Roadmap.tsx index 0835fabd..350bbb78 100644 --- a/client/pages/Roadmap.tsx +++ b/client/pages/Roadmap.tsx @@ -177,7 +177,7 @@ export default function Roadmap() { {/* Phases */}
- {["now","month1","month2","month3"].map((phase) => { + {(focusedPhase ? [focusedPhase] : ["now","month1","month2","month3"]).map((phase) => { const Icon = PhaseIcon[phase] || Target; const items = QUESTS.filter((q) => q.phase === phase); const title = phase === "now" ? "Now" : phase === "month1" ? "Month 1" : phase === "month2" ? "Month 2" : "Month 3";