(pat: string)
| 26 | }; |
| 27 | |
| 28 | const handlePrivateReposSubmit = (pat: string) => { |
| 29 | // Store the PAT in localStorage |
| 30 | localStorage.setItem("github_pat", pat); |
| 31 | setIsPrivateReposDialogOpen(false); |
| 32 | }; |
| 33 | |
| 34 | const handleApiKeySubmit = (apiKey: string) => { |
| 35 | localStorage.setItem("openai_key", apiKey); |
nothing calls this directly
no outgoing calls
no test coverage detected