refactor(practice): remove manual pause encouragement message

Remove the "Smart thinking to take a break" element to declutter the
paused modal layout.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-12-11 16:55:38 -06:00
parent dd3dd4507c
commit 366a1f4b83
1 changed files with 0 additions and 26 deletions

View File

@ -532,32 +532,6 @@ export function SessionPausedModal({
</div>
)}
{/* Manual pause - simple and encouraging */}
{pauseInfo?.reason === 'manual' && (
<div
className={css({
display: 'flex',
alignItems: 'center',
gap: '0.5rem',
padding: '0.75rem 1rem',
backgroundColor: isDark ? 'green.900/50' : 'green.50',
borderRadius: '12px',
border: '1px solid',
borderColor: isDark ? 'green.700' : 'green.200',
})}
>
<span className={css({ fontSize: '1.25rem' })}></span>
<p
className={css({
fontSize: '0.8125rem',
color: isDark ? 'green.200' : 'green.700',
})}
>
Smart thinking to take a break when you need one!
</p>
</div>
)}
{/* Progress summary - celebratory */}
<div
className={css({