From d3d132ec459bbb2e14a4c90a1be00636f650b0ef Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Thu, 9 Jan 2025 08:55:01 +0100 Subject: [PATCH] unused id --- interface/src/app/status/SystemLog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/app/status/SystemLog.tsx b/interface/src/app/status/SystemLog.tsx index 35b11dbf7..743ee3176 100644 --- a/interface/src/app/status/SystemLog.tsx +++ b/interface/src/app/status/SystemLog.tsx @@ -115,7 +115,7 @@ const SystemLog = () => { immediate: true, interceptByGlobalResponded: false }) - .onMessage((message: { id: number; data: string }) => { + .onMessage((message: { data: string }) => { const rawData = message.data; const logentry = JSON.parse(rawData) as LogEntry; setLogEntries((log) => [...log, logentry]);