Fix DebugTab crash (Bug 4): Correct GameStore import path
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 25s
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 25s
This commit is contained in:
@@ -4,7 +4,7 @@ import { Button } from '@/components/ui/button';
|
||||
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
import { ATTUNEMENTS_DEF } from '@/lib/game/data/attunements';
|
||||
import { Sparkles, Unlock } from 'lucide-react';
|
||||
import type { GameStore } from '@/lib/game/types';
|
||||
import type { GameStore } from '@/lib/game/store';
|
||||
|
||||
interface AttunementDebugProps {
|
||||
store: GameStore;
|
||||
|
||||
@@ -4,7 +4,7 @@ import { Button } from '@/components/ui/button';
|
||||
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
import { ELEMENTS } from '@/lib/game/constants';
|
||||
import { Star, Lock } from 'lucide-react';
|
||||
import type { GameStore } from '@/lib/game/types';
|
||||
import type { GameStore } from '@/lib/game/store';
|
||||
|
||||
interface ElementDebugProps {
|
||||
store: GameStore;
|
||||
|
||||
@@ -10,7 +10,7 @@ import {
|
||||
RotateCcw, AlertTriangle, Zap, Clock, Settings, Eye,
|
||||
Plus
|
||||
} from 'lucide-react';
|
||||
import type { GameStore } from '@/lib/game/types';
|
||||
import type { GameStore } from '@/lib/game/store';
|
||||
import { fmt } from '@/lib/game/store';
|
||||
import { useDebug } from '@/lib/game/debug-context';
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
import { Bug } from 'lucide-react';
|
||||
import type { GameStore } from '@/lib/game/types';
|
||||
import type { GameStore } from '@/lib/game/store';
|
||||
|
||||
interface GolemDebugProps {
|
||||
store: GameStore;
|
||||
|
||||
@@ -4,7 +4,7 @@ import { Button } from '@/components/ui/button';
|
||||
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
import { Separator } from '@/components/ui/separator';
|
||||
import { BookOpen } from 'lucide-react';
|
||||
import type { GameStore } from '@/lib/game/types';
|
||||
import type { GameStore } from '@/lib/game/store';
|
||||
|
||||
interface SkillDebugProps {
|
||||
store: GameStore;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
'use client';
|
||||
|
||||
import type { GameStore } from '@/lib/game/types';
|
||||
import type { GameStore } from '@/lib/game/store';
|
||||
import {
|
||||
GameStateDebug,
|
||||
SkillDebug,
|
||||
|
||||
Reference in New Issue
Block a user