aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-10-04 21:24:34 +0200
committerMichael Muré <batolettre@gmail.com>2022-10-04 21:24:34 +0200
commitc02528b77dfd2408bdabf3216e872d86c842a9cf (patch)
treeb53b32c9848e26e8f70c15a203cafba39b1bb302 /webui/src
parenta00121970e5c3fe31655aa984e04aacc401ea3ea (diff)
downloadgit-bug-c02528b77dfd2408bdabf3216e872d86c842a9cf.tar.gz
webui: update most of dependencies
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} />;
};