fix: resolve runtime issues with game loop, tabs, and error handling
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m45s
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m45s
- Fix game loop store mismatch (page.tsx was using old store, gameHooks using new store) - Fix StatsTab.tsx calling getStudySpeedMultiplier with wrong arguments - Add ErrorBoundary to page.tsx for better error handling - Fix import syntax issues in page.tsx - Ensure build succeeds with fixes
This commit is contained in:
+32
-31
@@ -179,37 +179,38 @@ Mana-Loop/
|
||||
│ │ │ ├── UpgradeDialog.tsx
|
||||
│ │ │ ├── index.ts
|
||||
│ │ │ └── types.ts
|
||||
│ │ └── ui/
|
||||
│ │ ├── action-button.tsx
|
||||
│ │ ├── alert-dialog.tsx
|
||||
│ │ ├── badge.tsx
|
||||
│ │ ├── button.tsx
|
||||
│ │ ├── card.tsx
|
||||
│ │ ├── dialog.tsx
|
||||
│ │ ├── element-badge.tsx
|
||||
│ │ ├── game-card.tsx
|
||||
│ │ ├── index.ts
|
||||
│ │ ├── input.tsx
|
||||
│ │ ├── label.tsx
|
||||
│ │ ├── mana-bar.tsx
|
||||
│ │ ├── progress.tsx
|
||||
│ │ ├── scroll-area.tsx
|
||||
│ │ ├── section-header.tsx
|
||||
│ │ ├── select.tsx
|
||||
│ │ ├── separator.tsx
|
||||
│ │ ├── sheet.tsx
|
||||
│ │ ├── skeleton.tsx
|
||||
│ │ ├── skill-row.tsx
|
||||
│ │ ├── stat-row.tsx
|
||||
│ │ ├── stepper.tsx
|
||||
│ │ ├── switch.tsx
|
||||
│ │ ├── tabs.tsx
|
||||
│ │ ├── toast.tsx
|
||||
│ │ ├── toaster.tsx
|
||||
│ │ ├── toggle.tsx
|
||||
│ │ ├── tooltip-info.tsx
|
||||
│ │ ├── tooltip.tsx
|
||||
│ │ └── value-display.tsx
|
||||
│ │ ├── ui/
|
||||
│ │ │ ├── action-button.tsx
|
||||
│ │ │ ├── alert-dialog.tsx
|
||||
│ │ │ ├── badge.tsx
|
||||
│ │ │ ├── button.tsx
|
||||
│ │ │ ├── card.tsx
|
||||
│ │ │ ├── dialog.tsx
|
||||
│ │ │ ├── element-badge.tsx
|
||||
│ │ │ ├── game-card.tsx
|
||||
│ │ │ ├── index.ts
|
||||
│ │ │ ├── input.tsx
|
||||
│ │ │ ├── label.tsx
|
||||
│ │ │ ├── mana-bar.tsx
|
||||
│ │ │ ├── progress.tsx
|
||||
│ │ │ ├── scroll-area.tsx
|
||||
│ │ │ ├── section-header.tsx
|
||||
│ │ │ ├── select.tsx
|
||||
│ │ │ ├── separator.tsx
|
||||
│ │ │ ├── sheet.tsx
|
||||
│ │ │ ├── skeleton.tsx
|
||||
│ │ │ ├── skill-row.tsx
|
||||
│ │ │ ├── stat-row.tsx
|
||||
│ │ │ ├── stepper.tsx
|
||||
│ │ │ ├── switch.tsx
|
||||
│ │ │ ├── tabs.tsx
|
||||
│ │ │ ├── toast.tsx
|
||||
│ │ │ ├── toaster.tsx
|
||||
│ │ │ ├── toggle.tsx
|
||||
│ │ │ ├── tooltip-info.tsx
|
||||
│ │ │ ├── tooltip.tsx
|
||||
│ │ │ └── value-display.tsx
|
||||
│ │ └── ErrorBoundary.tsx
|
||||
│ ├── hooks/
|
||||
│ │ ├── use-mobile.ts
|
||||
│ │ └── use-toast.ts
|
||||
|
||||
Reference in New Issue
Block a user