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
commit1f4878f89549e6c9ccc3483a47b9f3a95c6ee9f4 (patch)
tree8b5e973a31e95009f975e8fadf1521d044c6ac27 /extension/react-app/src/components/StepContainer.tsx
parent9371b7da2122ad3525b00f377ecf829b0d904b47 (diff)
downloadsncontinue-1f4878f89549e6c9ccc3483a47b9f3a95c6ee9f4.tar.gz
sncontinue-1f4878f89549e6c9ccc3483a47b9f3a95c6ee9f4.tar.bz2
sncontinue-1f4878f89549e6c9ccc3483a47b9f3a95c6ee9f4.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} />