Remove pause button from header (Sub-Task 3)
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 7m43s

- Removed pause button from TimeDisplay component
- Removed pause-related props (paused, onTogglePause) from TimeDisplay
- Cleaned up unused imports (Play, Pause from lucide-react, Button)
- Updated page.tsx to pass insight prop instead of pause props
- Header now shows: game title, day/hour, and insight display
This commit is contained in:
Refactoring Agent
2026-04-27 10:57:09 +02:00
parent 06778f96b3
commit f31b98b378
3 changed files with 3 additions and 19 deletions
+1 -2
View File
@@ -181,8 +181,7 @@ export default function ManaLoopGame() {
<TimeDisplay
day={store.day}
hour={store.hour}
isPaused={store.paused}
togglePause={store.togglePause}
insight={store.insight}
/>
</div>
</div>