Git - remove the usages of any (#270179)

* Git - remove the usages of `any`

* Remove debug message
This commit is contained in:
Ladislau Szomoru
2025-10-07 14:14:52 +02:00
committed by GitHub
parent 9de55d2cb1
commit c244c79cd4
4 changed files with 10 additions and 21 deletions

View File

@@ -5366,8 +5366,7 @@ export class CommandCenter {
};
// patch this object, so people can call methods directly
// eslint-disable-next-line local/code-no-any-casts
(this as any)[key] = result;
(this as Record<string, unknown>)[key] = result;
return result;
}