()
| 26 | }, [searchParams]); |
| 27 | |
| 28 | const getGithubData = async () => { |
| 29 | const response = await fetch('/api/github/details'); |
| 30 | const resp = await response.json(); |
| 31 | setGithubData(resp.data[0]); |
| 32 | }; |
| 33 | |
| 34 | const handleUnlinkAccount = async () => { |
| 35 | setIsProcessing(true); |
no outgoing calls
no test coverage detected