signals-dashboard: drop unused existsSync import

Synced from the-workshop@591591c. Round-3 review: existsSync became dead after PATH validation moved to statSync/accessSync.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62
This commit is contained in:
jennyf19
2026-07-20 11:36:24 -07:00
parent 055dda1672
commit df4f3ebc42
+1 -1
View File
@@ -4,7 +4,7 @@
// Supports stashing desks (48hr hold) and restoring them.
import { createServer } from "node:http";
import { existsSync, statSync, accessSync, realpathSync, constants as fsConstants } from "node:fs";
import { statSync, accessSync, realpathSync, constants as fsConstants } from "node:fs";
import { readdir, readFile, writeFile, stat } from "node:fs/promises";
import { join, delimiter, sep } from "node:path";
import { spawn } from "node:child_process";