fix: record tui input history (#1348) (thanks @vignesh07)

This commit is contained in:
Peter Steinberger
2026-01-21 04:37:22 +00:00
parent 2700794228
commit 6f37f1d8ff
3 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,6 @@ const routeSessions: RouteSpec = {
match: (path) => path[0] === "sessions",
run: async (argv) => {
const json = hasFlag(argv, "--json");
const verbose = getVerboseFlag(argv);
const store = getFlagValue(argv, "--store");
if (store === null) return false;
const active = getFlagValue(argv, "--active");

View File

@@ -18,7 +18,7 @@ const shouldRegisterPrimaryOnly = (argv: string[]) => {
return true;
};
const shouldEagerRegisterSubcommands = (argv: string[]) => {
const shouldEagerRegisterSubcommands = (_argv: string[]) => {
return isTruthyEnvValue(process.env.CLAWDBOT_DISABLE_LAZY_SUBCOMMANDS);
};