summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components
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
commite5706b993030ed02c1da4ffcff1a41498faf5ab7 (patch)
tree54b3b77540ed5024d4d37f68ee9000a09e88a882 /extension/react-app/src/components
parente042a47b9a5af3a0977c55dbec99f83e1a942975 (diff)
downloadsncontinue-e5706b993030ed02c1da4ffcff1a41498faf5ab7.tar.gz
sncontinue-e5706b993030ed02c1da4ffcff1a41498faf5ab7.tar.bz2
sncontinue-e5706b993030ed02c1da4ffcff1a41498faf5ab7.zip
making autodetect work
Diffstat (limited to 'extension/react-app/src/components')
-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>
);