Fix linter.

This commit is contained in:
Christian Gunderman
2026-04-29 10:29:47 -07:00
parent 7faa50cbae
commit 8dbfe52e37
8 changed files with 8 additions and 8 deletions
@@ -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;