From cc5bb479c6e666393ebae3e437e4da1b0c1fa273 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Thu, 11 Dec 2025 17:04:47 -0600 Subject: [PATCH] fix(practice): correct pause phrase attribution MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Auto-pause (system pressed): "We pressed paws!", "This one's a thinker!" Manual pause (kid pressed): "You pressed paws!", "Good call!", "Smart break!" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../components/practice/SessionPausedModal.tsx | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/apps/web/src/components/practice/SessionPausedModal.tsx b/apps/web/src/components/practice/SessionPausedModal.tsx index 3434910a..10c47019 100644 --- a/apps/web/src/components/practice/SessionPausedModal.tsx +++ b/apps/web/src/components/practice/SessionPausedModal.tsx @@ -55,26 +55,24 @@ function getPartTypeEmoji(type: SessionPart['type']): string { } } -// Fun phrases for auto-pause (when taking too long on a problem) +// Fun phrases for auto-pause (system noticed they're taking a while) const AUTO_PAUSE_PHRASES = [ + 'We pressed paws! 🙏', "This one's a thinker!", - 'Taking your time? Smart!', - 'Deep thoughts happening...', + 'Deep thoughts detected!', 'Brain at work!', 'Thinking cap on!', - 'Processing...', - 'Working it out!', + 'Taking your time? Smart!', ] -// Fun phrases for manual pause (user chose to take a break) +// Fun phrases for manual pause (kid chose to take a break) const MANUAL_PAUSE_PHRASES = [ - 'We pressed paws! 🙏', + 'You pressed paws! 🙏', 'Break time!', 'Taking five!', 'Quick breather!', - 'Stretch break!', - 'Recharging...', - 'Be right back!', + 'Good call!', + 'Smart break!', ] // Intl formatters for duration display