summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-06-18 17:35:27 -0700
committerTy Dunn <ty@tydunn.com>2023-06-18 17:35:27 -0700
commit93c7f35759726aaf58d14dae36fc39afd3419b3b (patch)
tree748dc1f3fe713331f6f9f196e40bfd9b7b8b5e6d /extension
parent04f008017cbe71d49b22e978af817d54f31b4a18 (diff)
downloadsncontinue-93c7f35759726aaf58d14dae36fc39afd3419b3b.tar.gz
sncontinue-93c7f35759726aaf58d14dae36fc39afd3419b3b.tar.bz2
sncontinue-93c7f35759726aaf58d14dae36fc39afd3419b3b.zip
making autodetect work
Diffstat (limited to 'extension')
-rw-r--r--extension/react-app/src/components/StyledCode.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/react-app/src/components/StyledCode.tsx b/extension/react-app/src/components/StyledCode.tsx
index 16183e7f..2f8428dc 100644
--- a/extension/react-app/src/components/StyledCode.tsx
+++ b/extension/react-app/src/components/StyledCode.tsx
@@ -6,7 +6,7 @@ interface StyledCodeProps {
}
const StyledCode = (props: (StyledCodeProps)) => (
- <SyntaxHighlighter language="auto" style={synthwave84}>
+ <SyntaxHighlighter style={synthwave84}>
{props.children}
</SyntaxHighlighter>
);