summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/hooks/slashCommandProcessor.ts
diff options
context:
space:
mode:
authorN. Taylor Mullen <[email protected]>2025-07-28 11:13:46 -0700
committerGitHub <[email protected]>2025-07-28 18:13:46 +0000
commit9aef0a8e6c133d3bf1ff43f80119664c154ffdf2 (patch)
tree6dbc4a1011d50188dc1fc2b9b4d133f8795ec8b6 /packages/cli/src/ui/hooks/slashCommandProcessor.ts
parenta5ea113a8e485f42cc1136b6c57e337cbf369c57 (diff)
Revert "feat: Add /config refresh command" (#5060)
Diffstat (limited to 'packages/cli/src/ui/hooks/slashCommandProcessor.ts')
-rw-r--r--packages/cli/src/ui/hooks/slashCommandProcessor.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/packages/cli/src/ui/hooks/slashCommandProcessor.ts b/packages/cli/src/ui/hooks/slashCommandProcessor.ts
index 67e49c21..be32de11 100644
--- a/packages/cli/src/ui/hooks/slashCommandProcessor.ts
+++ b/packages/cli/src/ui/hooks/slashCommandProcessor.ts
@@ -50,7 +50,6 @@ export const useSlashCommandProcessor = (
openPrivacyNotice: () => void,
toggleVimEnabled: () => Promise<boolean>,
setIsProcessing: (isProcessing: boolean) => void,
- refreshConfig: () => Promise<void>,
) => {
const session = useSessionStats();
const [commands, setCommands] = useState<readonly SlashCommand[]>([]);
@@ -159,7 +158,6 @@ export const useSlashCommandProcessor = (
setPendingItem: setPendingCompressionItem,
toggleCorgiMode,
toggleVimEnabled,
- refreshConfig,
},
session: {
stats: session.stats,
@@ -182,7 +180,6 @@ export const useSlashCommandProcessor = (
toggleCorgiMode,
toggleVimEnabled,
sessionShellAllowlist,
- refreshConfig,
],
);