diff --git a/docs/task3/subtask_3_progress.md b/docs/task3/subtask_3_progress.md index 626337a..2582731 100644 --- a/docs/task3/subtask_3_progress.md +++ b/docs/task3/subtask_3_progress.md @@ -1,9 +1,9 @@ # Sub-Task 3 Progress: Header Pause Button Removal -## Status: Pending +## Status: In Progress ## Completed Steps -- [ ] Locate pause button in Header component +- [x] Locate pause button in Header component - [ ] Remove pause button and related code - [ ] Clean up unused imports/handlers - [ ] Verify header layout is intact diff --git a/src/app/page.tsx b/src/app/page.tsx index 9cb47a9..6a7cf0c 100755 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -181,8 +181,7 @@ export default function ManaLoopGame() { diff --git a/src/components/game/TimeDisplay.tsx b/src/components/game/TimeDisplay.tsx index 760c980..3d49f8a 100755 --- a/src/components/game/TimeDisplay.tsx +++ b/src/components/game/TimeDisplay.tsx @@ -1,7 +1,5 @@ 'use client'; -import { Play, Pause } from 'lucide-react'; -import { Button } from '@/components/ui/button'; import { fmt } from '@/lib/game/store'; import { formatHour } from '@/lib/game/formatting'; @@ -9,16 +7,12 @@ interface TimeDisplayProps { day: number; hour: number; insight: number; - paused: boolean; - onTogglePause: () => void; } export function TimeDisplay({ day, hour, insight, - paused, - onTogglePause, }: TimeDisplayProps) { return (
@@ -37,15 +31,6 @@ export function TimeDisplay({
Insight
- - ); }