Fix critical 'any' types in components

This commit is contained in:
gpt-engineer-app[bot]
2025-11-03 20:30:01 +00:00
parent 2cd6b2c6c3
commit 3d07198454
10 changed files with 403 additions and 28 deletions

View File

@@ -414,8 +414,8 @@ export const ReportsQueue = forwardRef<ReportsQueueRef>((props, ref) => {
const sorted = [...reports];
sorted.sort((a, b) => {
let compareA: any;
let compareB: any;
let compareA: string | number;
let compareB: string | number;
switch (config.field) {
case 'created_at':