fix: remove command prefix from action prefill text
This commit is contained in:
parent
779722fe85
commit
e6d74cc318
|
|
@ -127,7 +127,7 @@ export const RevealManager: Component = () => {
|
||||||
action: () =>
|
action: () =>
|
||||||
setActionPrefill({
|
setActionPrefill({
|
||||||
command: "/spark",
|
command: "/spark",
|
||||||
text: `/spark ${combinedSlug}`,
|
text: combinedSlug,
|
||||||
}),
|
}),
|
||||||
title: "Roll spark table",
|
title: "Roll spark table",
|
||||||
svg: SPARK_SVG,
|
svg: SPARK_SVG,
|
||||||
|
|
@ -147,7 +147,7 @@ export const RevealManager: Component = () => {
|
||||||
action: () =>
|
action: () =>
|
||||||
setActionPrefill({
|
setActionPrefill({
|
||||||
command: "/link",
|
command: "/link",
|
||||||
text: `/link ${normalized}#${text}`,
|
text: `${normalized}#${text}`,
|
||||||
}),
|
}),
|
||||||
title: "Send /link to stream",
|
title: "Send /link to stream",
|
||||||
svg: LINK_SVG,
|
svg: LINK_SVG,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue