(key)
| 122 | ]); |
| 123 | |
| 124 | function friendlyLabel(key) { |
| 125 | return key |
| 126 | .replace(/_/g, ' ') |
| 127 | .replace(/\b\w/g, (c) => c.toUpperCase()); |
| 128 | } |
| 129 | |
| 130 | export default function ConfigPage() { |
| 131 | const [config, setConfig] = useState({}); |
nothing calls this directly
no outgoing calls
no test coverage detected