diff --git a/apps/web/src/app/create/worksheets/addition/components/ConfigPanel.tsx b/apps/web/src/app/create/worksheets/addition/components/ConfigPanel.tsx index e736c982..ccc7eb14 100644 --- a/apps/web/src/app/create/worksheets/addition/components/ConfigPanel.tsx +++ b/apps/web/src/app/create/worksheets/addition/components/ConfigPanel.tsx @@ -2241,8 +2241,20 @@ export function ConfigPanel({ formState, onChange }: ConfigPanelProps) { onChange({ showCarryBoxes: checked })} - label="Carry Boxes" - description="Help students track regrouping during addition" + label={ + formState.operator === 'subtraction' + ? 'Borrow Boxes' + : formState.operator === 'mixed' + ? 'Carry/Borrow Boxes' + : 'Carry Boxes' + } + description={ + formState.operator === 'subtraction' + ? 'Help students track borrowing during subtraction' + : formState.operator === 'mixed' + ? 'Help students track regrouping (carrying in addition, borrowing in subtraction)' + : 'Help students track regrouping during addition' + } />