fix(practice): correct pause phrase attribution
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 <noreply@anthropic.com>
This commit is contained in:
parent
652519f219
commit
cc5bb479c6
|
|
@ -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 = [
|
const AUTO_PAUSE_PHRASES = [
|
||||||
|
'We pressed paws! 🙏',
|
||||||
"This one's a thinker!",
|
"This one's a thinker!",
|
||||||
'Taking your time? Smart!',
|
'Deep thoughts detected!',
|
||||||
'Deep thoughts happening...',
|
|
||||||
'Brain at work!',
|
'Brain at work!',
|
||||||
'Thinking cap on!',
|
'Thinking cap on!',
|
||||||
'Processing...',
|
'Taking your time? Smart!',
|
||||||
'Working it out!',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
// 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 = [
|
const MANUAL_PAUSE_PHRASES = [
|
||||||
'We pressed paws! 🙏',
|
'You pressed paws! 🙏',
|
||||||
'Break time!',
|
'Break time!',
|
||||||
'Taking five!',
|
'Taking five!',
|
||||||
'Quick breather!',
|
'Quick breather!',
|
||||||
'Stretch break!',
|
'Good call!',
|
||||||
'Recharging...',
|
'Smart break!',
|
||||||
'Be right back!',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
// Intl formatters for duration display
|
// Intl formatters for duration display
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue