fix: invalid Crockford Base32 log tag in eval list command
CI / check (pull_request) Successful in 3m57s
CI / check (push) Successful in 3m31s

L is not a valid Crockford Base32 character. Replace with H.

小橘 🍊(NEKO Team)
This commit is contained in:
2026-06-06 07:57:00 +00:00
parent aa454c85dd
commit 0e7e3ea44b
+1 -1
View File
@@ -6,7 +6,7 @@ import { formatList, selectEntries } from "./format.js";
import { readEvalEntries } from "./read.js"; import { readEvalEntries } from "./read.js";
const log = createLogger({ sink: { kind: "stderr" } }); const log = createLogger({ sink: { kind: "stderr" } });
const LOG_LIST = "L5KX9R2B"; const LOG_LIST = "H5KX9R2B";
type ListCliOptions = { type ListCliOptions = {
task: string | undefined; task: string | undefined;