fix: update StatsTab, DebugTab and all child components to use modular stores
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m42s
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m42s
- Updated StatsTab to use hooks directly (useSkillStore, usePrestigeStore, etc.) - Updated DebugTab to use hooks directly - Updated all debug child components (GameStateDebug, SkillDebug, AttunementDebug, etc.) - Updated all stats child components (ManaStatsSection, CombatStatsSection, etc.) - Fixed UpgradeEffectsSection.tsx syntax errors - Updated page.tsx to not pass store prop to StatsTab and DebugTab - All components now use modular stores directly instead of receiving store prop
This commit is contained in:
+2
-2
@@ -233,13 +233,13 @@ export default function ManaLoopGame() {
|
||||
|
||||
<TabsContent value="stats">
|
||||
<Suspense fallback={<TabLoadingFallback />}>
|
||||
<StatsTab store={store} />
|
||||
<StatsTab />
|
||||
</Suspense>
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="debug">
|
||||
<Suspense fallback={<TabLoadingFallback />}>
|
||||
<DebugTab store={store} />
|
||||
<DebugTab />
|
||||
</Suspense>
|
||||
</TabsContent>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user