fix: resolved biome errors

This commit is contained in:
2025-07-13 20:12:17 +02:00
parent 42ad5b7c80
commit 6114e80e98
23 changed files with 7589 additions and 4180 deletions

View File

@ -191,7 +191,7 @@ export const DynamicAuditLogsPanel = createDynamicComponent(
// React wrapper for React.lazy with Suspense
export function createLazyComponent<
T extends Record<string, any> = Record<string, any>,
T extends Record<string, unknown> = Record<string, unknown>,
>(
importFunc: () => Promise<{ default: ComponentType<T> }>,
fallback: ComponentType = LoadingSpinner