fix: KÜ Firmwareupdate

This commit is contained in:
ISA
2025-07-03 07:36:10 +02:00
parent 937e7b67e9
commit 4245d7a991
8 changed files with 36 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
// services/fetchAnalogInputsHistoryService.ts
export async function fetchAnalogInputsHistoryService(): Promise<
Record<number, any[]>
Record<number, unknown[]>
> {
const today = new Date();
const yesterday = new Date(today);
@@ -16,7 +16,7 @@ export async function fetchAnalogInputsHistoryService(): Promise<
const fromDate = formatDate(yesterday);
const toDate = formatDate(today);
const result: Record<number, any[]> = {};
const result: Record<number, unknown[]> = {};
const isDev = process.env.NODE_ENV === "development";