fix: hydration mismatch, production Dockerfile, SSR localStorage guard, SpellsTab/SkillsTab/debug store migrations
Build and Publish Mana Loop Docker Image / build-and-publish (push) Has been cancelled

This commit is contained in:
2026-05-06 11:17:12 +02:00
parent 17b3571a18
commit 496d3dde4c
6 changed files with 28 additions and 45 deletions
@@ -4,12 +4,12 @@ import { Button } from '@/components/ui/button';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Sparkles, Unlock } from 'lucide-react';
import { ATTUNEMENTS_DEF } from '@/lib/game/data/attunements';
import { usePrestigeStore } from '@/lib/game/stores';
import { useAttunementStore } from '@/lib/game/stores';
export function AttunementDebug() {
const attunements = usePrestigeStore((s) => s.attunements);
const debugUnlockAttunement = usePrestigeStore((s) => s.debugUnlockAttunement);
const debugAddAttunementXP = usePrestigeStore((s) => s.debugAddAttunementXP);
const attunements = useAttunementStore((s) => s.attunements);
const debugUnlockAttunement = useAttunementStore((s) => s.debugUnlockAttunement);
const debugAddAttunementXP = useAttunementStore((s) => s.debugAddAttunementXP);
const handleUnlockAttunement = (id: string) => {
if (debugUnlockAttunement) {