summaryrefslogtreecommitdiff
path: root/makima/frontend/src/routes
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-02-22 15:29:28 +0000
committersoryu <soryu@soryu.co>2026-02-22 15:29:28 +0000
commit0c00b6aa26baf49ba02164cd44aab16f9c804bbd (patch)
tree58985a98a5f45b40e99d9ca7ed450d260e2e24b8 /makima/frontend/src/routes
parent28f69e923cb7ee711b56fad07fb2d5b5220ce127 (diff)
downloadsoryu-0c00b6aa26baf49ba02164cd44aab16f9c804bbd.tar.gz
soryu-0c00b6aa26baf49ba02164cd44aab16f9c804bbd.zip
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 <noreply@anthropic.com>
Diffstat (limited to 'makima/frontend/src/routes')
-rw-r--r--makima/frontend/src/routes/daemons.tsx4
1 files changed, 2 insertions, 2 deletions
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();