summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-02 19:45:17 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-02 19:45:17 -0400
commitbd7d3b8e524324a78667ca3eee01f9d7ae1181f3 (patch)
treef481a49b63d89ef5d667dce0ec9a4b791786834e /extension/react-app/src/components
parent57c3b77a5fe9ca73fb54d2c518470ef834aa9d72 (diff)
parent8970af9e695fe8196f4f3b61dd16271ae733f630 (diff)
downloadsncontinue-bd7d3b8e524324a78667ca3eee01f9d7ae1181f3.tar.gz
sncontinue-bd7d3b8e524324a78667ca3eee01f9d7ae1181f3.tar.bz2
sncontinue-bd7d3b8e524324a78667ca3eee01f9d7ae1181f3.zip
Merge branch 'docs'
Diffstat (limited to 'extension/react-app/src/components')
-rw-r--r--extension/react-app/src/components/CodeMultiselect.tsx2
-rw-r--r--extension/react-app/src/components/VSCodeFileLink.tsx4
2 files changed, 3 insertions, 3 deletions
diff --git a/extension/react-app/src/components/CodeMultiselect.tsx b/extension/react-app/src/components/CodeMultiselect.tsx
index 626ae42f..c0ab9400 100644
--- a/extension/react-app/src/components/CodeMultiselect.tsx
+++ b/extension/react-app/src/components/CodeMultiselect.tsx
@@ -135,7 +135,7 @@ function formatFileRange(
)} (lines ${rangeInFile.range.start.line + 1}-${
rangeInFile.range.end.line + 1
})`;
- // +1 because VSCode Ranges are 0-indexed
+ // +1 because VS Code Ranges are 0-indexed
}
//#endregion
diff --git a/extension/react-app/src/components/VSCodeFileLink.tsx b/extension/react-app/src/components/VSCodeFileLink.tsx
index 6219654d..12ce5af8 100644
--- a/extension/react-app/src/components/VSCodeFileLink.tsx
+++ b/extension/react-app/src/components/VSCodeFileLink.tsx
@@ -1,7 +1,7 @@
import React from "react";
import { postVscMessage } from "../vscode";
-function VSCodeFileLink(props: { path: string; text?: string }) {
+function VS CodeFileLink(props: { path: string; text?: string }) {
return (
<a
href={`file://${props.path}`}
@@ -14,4 +14,4 @@ function VSCodeFileLink(props: { path: string; text?: string }) {
);
}
-export default VSCodeFileLink;
+export default VS CodeFileLink;