Roadmap: add theme and focusedPhase state
cgen-19c6d243326e450988aa45e24dbb558f
This commit is contained in:
parent
6fa5d2253e
commit
8fa3282a58
1 changed files with 2 additions and 0 deletions
|
|
@ -73,6 +73,8 @@ const storageKey = "aethex_roadmap_unlocks_v1";
|
|||
export default function Roadmap() {
|
||||
const [claimed, setClaimed] = useState<Record<string, boolean>>({});
|
||||
const [unlocked, setUnlocked] = useState<Record<string, boolean>>({});
|
||||
const [theme, setTheme] = useState<RoadmapTheme>("space");
|
||||
const [focusedPhase, setFocusedPhase] = useState<Quest["phase"] | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in a new issue