()
| 113 | }, []); |
| 114 | |
| 115 | const handleLogout = () => { |
| 116 | document.cookie = |
| 117 | "session=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;"; |
| 118 | setTimeout(() => { |
| 119 | window.location.href = "/login"; |
| 120 | }, 100); |
| 121 | }; |
| 122 | |
| 123 | const handleGenerateReport = () => { |
| 124 | navigate(`/report${selectedPreset ? `?preset=${selectedPreset}` : ""}`); |
nothing calls this directly
no outgoing calls
no test coverage detected