aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src')
-rw-r--r--webui/src/components/Content/BlockQuoteTag.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/Content/BlockQuoteTag.tsx b/webui/src/components/Content/BlockQuoteTag.tsx
index ae6c34f4..dc270c1f 100644
--- a/webui/src/components/Content/BlockQuoteTag.tsx
+++ b/webui/src/components/Content/BlockQuoteTag.tsx
@@ -12,7 +12,7 @@ const useStyles = makeStyles((theme) => ({
},
}));
-const BlockQuoteTag: React.FC<React.HTMLProps<HTMLElement>> = (props) => {
+const BlockQuoteTag: React.FC<React.HTMLProps<HTMLQuoteElement>> = (props) => {
const classes = useStyles();
return <blockquote className={classes.tag} {...props} />;
};