(repoName: string)
| 324 | }, [getDiagram]); |
| 325 | |
| 326 | const isExampleRepo = (repoName: string): boolean => { |
| 327 | return Object.values(exampleRepos).some((value) => |
| 328 | value.includes(repoName), |
| 329 | ); |
| 330 | }; |
| 331 | |
| 332 | const handleModify = async (instructions: string) => { |
| 333 | if (isExampleRepo(repo)) { |
no outgoing calls
no test coverage detected