diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-18 17:35:27 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-18 17:35:27 -0700 |
commit | e5706b993030ed02c1da4ffcff1a41498faf5ab7 (patch) | |
tree | 54b3b77540ed5024d4d37f68ee9000a09e88a882 | |
parent | e042a47b9a5af3a0977c55dbec99f83e1a942975 (diff) | |
download | sncontinue-e5706b993030ed02c1da4ffcff1a41498faf5ab7.tar.gz sncontinue-e5706b993030ed02c1da4ffcff1a41498faf5ab7.tar.bz2 sncontinue-e5706b993030ed02c1da4ffcff1a41498faf5ab7.zip |
making autodetect work
-rw-r--r-- | extension/react-app/src/components/StyledCode.tsx | 2 |
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> ); |