From e6d74cc3189b3f70035de049c968bf002fcd7cd6 Mon Sep 17 00:00:00 2001 From: hypercross Date: Tue, 7 Jul 2026 23:32:33 +0800 Subject: [PATCH] fix: remove command prefix from action prefill text --- src/components/RevealManager.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/RevealManager.tsx b/src/components/RevealManager.tsx index 983bc90..496ed5a 100644 --- a/src/components/RevealManager.tsx +++ b/src/components/RevealManager.tsx @@ -127,7 +127,7 @@ export const RevealManager: Component = () => { action: () => setActionPrefill({ command: "/spark", - text: `/spark ${combinedSlug}`, + text: combinedSlug, }), title: "Roll spark table", svg: SPARK_SVG, @@ -147,7 +147,7 @@ export const RevealManager: Component = () => { action: () => setActionPrefill({ command: "/link", - text: `/link ${normalized}#${text}`, + text: `${normalized}#${text}`, }), title: "Send /link to stream", svg: LINK_SVG,