summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/StepContainer.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-06 00:25:41 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-06 00:25:41 -0700
commit4ae4e778684552a0bba5eecb20983af1b9d1de00 (patch)
treeb9972bc84d50f6f3e3ab28cd88f68de7d4b7e0f5 /extension/react-app/src/components/StepContainer.tsx
parentcf3d02c198e3e076da477ff7d1dc27182d2f8aa3 (diff)
downloadsncontinue-4ae4e778684552a0bba5eecb20983af1b9d1de00.tar.gz
sncontinue-4ae4e778684552a0bba5eecb20983af1b9d1de00.tar.bz2
sncontinue-4ae4e778684552a0bba5eecb20983af1b9d1de00.zip
fixing command history and dropdown
Diffstat (limited to 'extension/react-app/src/components/StepContainer.tsx')
-rw-r--r--extension/react-app/src/components/StepContainer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/react-app/src/components/StepContainer.tsx b/extension/react-app/src/components/StepContainer.tsx
index 91d7b8ef..590b1166 100644
--- a/extension/react-app/src/components/StepContainer.tsx
+++ b/extension/react-app/src/components/StepContainer.tsx
@@ -206,7 +206,7 @@ function StepContainer(props: StepContainerProps) {
e.stopPropagation();
props.onDelete();
}}
- text={props.historyNode.active ? "Stop" : "Delete"}
+ text={props.historyNode.active ? "Stop (⌘⌫)" : "Delete"}
>
{props.historyNode.active ? (
<StopCircle size="1.6em" onClick={props.onDelete} />