(rawValue: string)
| 745 | }; |
| 746 | |
| 747 | const setMaxTaskNestingDepth = (rawValue: string) => { |
| 748 | const parsed = Number(rawValue); |
| 749 | setTaskSettings((prev) => normalizeTaskSettings({ ...prev, maxTaskNestingDepth: parsed })); |
| 750 | }; |
| 751 | |
| 752 | const setProposePlanImplementReplacesChatHistory = (value: boolean) => { |
| 753 | setTaskSettings((prev) => |
no test coverage detected