From 0c00b6aa26baf49ba02164cd44aab16f9c804bbd Mon Sep 17 00:00:00 2001 From: soryu Date: Sun, 22 Feb 2026 15:29:28 +0000 Subject: fix: restore backfilledTasksRef and fix unused var in daemons route - Re-add backfilledTasksRef declaration that was stripped - Remove unused _response variable and RestartDaemonResponse import in daemons.tsx Co-Authored-By: Claude Opus 4.6 --- makima/frontend/src/routes/daemons.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'makima/frontend/src/routes') diff --git a/makima/frontend/src/routes/daemons.tsx b/makima/frontend/src/routes/daemons.tsx index f551543..90a476d 100644 --- a/makima/frontend/src/routes/daemons.tsx +++ b/makima/frontend/src/routes/daemons.tsx @@ -10,7 +10,7 @@ import { type Daemon, type DaemonListResponse, type DaemonPlatform, - type RestartDaemonResponse, + } from "../lib/api"; // ============================================================================= @@ -79,7 +79,7 @@ export default function DaemonsPage() { try { setRestartingDaemonId(id); setDaemonsError(null); - const _response: RestartDaemonResponse = await restartDaemon(id); + await restartDaemon(id); // Daemon will restart, so refresh the list after a short delay setTimeout(() => { loadDaemons(); -- cgit v1.2.3