(value: string)
| 159 | }; |
| 160 | |
| 161 | const handlePresetChange = (value: string) => { |
| 162 | setSelectedPreset(value); |
| 163 | // Update URL to reflect preset change |
| 164 | navigate(`/report?preset=${encodeURIComponent(value)}`, { replace: true }); |
| 165 | }; |
| 166 | |
| 167 | // Function to handle report regeneration |
| 168 | const handleRegenerateReport = async () => { |
nothing calls this directly
no outgoing calls
no test coverage detected