(title)
| 217 | }; |
| 218 | |
| 219 | const toggleSection = (title) => { |
| 220 | setExpandedSections((prev) => ({ ...prev, [title]: !prev[title] })); |
| 221 | }; |
| 222 | |
| 223 | // Collect keys that don't appear in any section (including newly added ones) |
| 224 | const categorizedKeys = new Set(CONFIG_SECTIONS.flatMap((s) => s.keys)); |
nothing calls this directly
no outgoing calls
no test coverage detected