diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-03 00:21:52 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-03 00:21:52 -0400 |
commit | 529279abf16cc8d7f2e4340819b9a8e945202185 (patch) | |
tree | 42bf106510923de9565a5224504427590cb38b5e /extension/react-app/src/components | |
parent | 157a815e9126a8eb6b3c05848d2f5159d2f89844 (diff) | |
download | sncontinue-529279abf16cc8d7f2e4340819b9a8e945202185.tar.gz sncontinue-529279abf16cc8d7f2e4340819b9a8e945202185.tar.bz2 sncontinue-529279abf16cc8d7f2e4340819b9a8e945202185.zip |
forgotten changes
Diffstat (limited to 'extension/react-app/src/components')
-rw-r--r-- | extension/react-app/src/components/VSCodeFileLink.tsx | 4 |
1 files changed, 2 insertions, 2 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; |