diff options
Diffstat (limited to 'extension/react-app/src')
| -rw-r--r-- | extension/react-app/src/components/StyledMarkdownPreview.tsx | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/extension/react-app/src/components/StyledMarkdownPreview.tsx b/extension/react-app/src/components/StyledMarkdownPreview.tsx index 98a08ea1..b1079c96 100644 --- a/extension/react-app/src/components/StyledMarkdownPreview.tsx +++ b/extension/react-app/src/components/StyledMarkdownPreview.tsx @@ -7,9 +7,7 @@ import {  } from ".";  import MarkdownPreview from "@uiw/react-markdown-preview"; -const StyledMarkdownPreview = styled(MarkdownPreview)<{ -  light: boolean | undefined; -}>` +const StyledMarkdownPreview = styled(MarkdownPreview)<{ light?: boolean }>`    pre {      background-color: ${(props) =>        props.light ? vscBackground : secondaryDark}; | 
