mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-15 06:12:50 -07:00
Fix linter.
This commit is contained in:
@@ -40,7 +40,7 @@ try {
|
||||
);
|
||||
const response = JSON.parse(output);
|
||||
if (response.errors) {
|
||||
throw new Error(response.errors.map((e: any) => e.message).join(', '));
|
||||
throw new Error(response.errors.map((e: { message: string }) => e.message).join(', '));
|
||||
}
|
||||
const data = response.data.repository;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user