summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
Diffstat (limited to 'extension')
-rw-r--r--extension/react-app/src/components/StepContainer.tsx2
-rw-r--r--extension/src/continueIdeClient.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/src/components/StepContainer.tsx b/extension/react-app/src/components/StepContainer.tsx
index 8ea54325..3408053b 100644
--- a/extension/react-app/src/components/StepContainer.tsx
+++ b/extension/react-app/src/components/StepContainer.tsx
@@ -169,7 +169,7 @@ function StepContainer(props: StepContainerProps) {
<ContentDiv hidden={!open}>
{open && false && (
<>
- <pre className="overflow-scroll">
+ <pre className="overflow-x-scroll">
Step Details:
<br />
{JSON.stringify(props.historyNode.step, null, 2)}
diff --git a/extension/src/continueIdeClient.ts b/extension/src/continueIdeClient.ts
index bbaf5f08..42671ade 100644
--- a/extension/src/continueIdeClient.ts
+++ b/extension/src/continueIdeClient.ts
@@ -176,7 +176,7 @@ class IdeProtocolClient {
// If not, ask user for secret
while (typeof secret === "undefined" || secret === "") {
secret = await vscode.window.showInputBox({
- prompt: `Enter secret for ${key}`,
+ prompt: `Enter secret for ${key}. You can edit this later in the Continue VS Code settings.`,
password: true,
});
}