summaryrefslogtreecommitdiff
path: root/extension/react-app/src
diff options
context:
space:
mode:
Diffstat (limited to 'extension/react-app/src')
-rw-r--r--extension/react-app/src/components/VSCodeFileLink.tsx4
-rw-r--r--extension/react-app/src/tabs/chat/MessageDiv.tsx2
2 files changed, 3 insertions, 3 deletions
diff --git a/extension/react-app/src/components/VSCodeFileLink.tsx b/extension/react-app/src/components/VSCodeFileLink.tsx
index 12ce5af8..6219654d 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 VS CodeFileLink(props: { path: string; text?: string }) {
+function VSCodeFileLink(props: { path: string; text?: string }) {
return (
<a
href={`file://${props.path}`}
@@ -14,4 +14,4 @@ function VS CodeFileLink(props: { path: string; text?: string }) {
);
}
-export default VS CodeFileLink;
+export default VSCodeFileLink;
diff --git a/extension/react-app/src/tabs/chat/MessageDiv.tsx b/extension/react-app/src/tabs/chat/MessageDiv.tsx
index 9bdd8638..ad81f5e9 100644
--- a/extension/react-app/src/tabs/chat/MessageDiv.tsx
+++ b/extension/react-app/src/tabs/chat/MessageDiv.tsx
@@ -6,7 +6,7 @@ import {
defaultBorderRadius,
secondaryDark,
} from "../../components";
-import VS CodeFileLink from "../../components/VS CodeFileLink";
+import VSCodeFileLink from "../../components/VSCodeFileLink";
import ReactMarkdown from "react-markdown";
import "../../highlight/dark.min.css";
import hljs from "highlight.js";