refactor: Improve type inference and error handling in various services and tests
Some checks are pending
Deploy to Test Environment / deploy-to-test (push) Has started running

This commit is contained in:
2025-12-14 19:25:08 -08:00
parent 35c0fb3bfe
commit f9115fdb73
3 changed files with 18 additions and 15 deletions

View File

@@ -395,7 +395,7 @@ export class AdminRepository {
action: string;
displayText: string;
icon?: string | null;
details?: Record<string, any> | null;
details?: Record<string, unknown> | null;
}, logger: Logger): Promise<void> {
const { userId, action, displayText, icon, details } = logData;
try {