fix: use ± symbol for mixed operator icon consistently

Update SETTING_ICONS to use ± (plus-minus) for mixed mode to match
the operator tab button icon. This ensures consistency across:
- Operator tab navigation button
- Mobile settings button
- Shared worksheet summary

Previously used 🔀 (shuffle) emoji which was inconsistent with the
tab button's ± symbol.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-11-12 17:38:52 -06:00
parent 0a35e70e28
commit 2695b50abe
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ export const SETTING_ICONS = {
subtraction: '',
multiplication: '✖️',
division: '➗',
mixed: '🔀',
mixed: '±',
},
difficulty: {
smart: '🎯',

View File

@ -143,7 +143,7 @@ export function SharedWorksheetSummary({ config }: SharedWorksheetSummaryProps)
{/* Main Content */}
<InfoCard
icon={config.operator === 'mixed' ? '+' : SETTING_ICONS.operator[config.operator]}
icon={SETTING_ICONS.operator[config.operator]}
title="What's Being Practiced"
description={`${operatorLabel} with ${digitRangeText}`}
isDark={isDark}