Fix linting issues
All checks were successful
Test / build (push) Successful in 20s

This commit is contained in:
Ethan Lane 2025-04-22 15:05:39 +01:00
parent eb3407255f
commit 9492d206e3

View file

@ -87,7 +87,7 @@ export default class AppLogger {
AppLogger.Logger.silly({ label, message });
}
public static CatchError(label: string, error: any) {
public static CatchError(label: string, error: unknown) {
if (error instanceof Error) {
AppLogger.Logger.error({ label, message: error.message });
} else {