diff options
author | Michael Muré <batolettre@gmail.com> | 2022-10-04 21:24:34 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-10-04 21:24:34 +0200 |
commit | c02528b77dfd2408bdabf3216e872d86c842a9cf (patch) | |
tree | b53b32c9848e26e8f70c15a203cafba39b1bb302 /webui/src/components | |
parent | a00121970e5c3fe31655aa984e04aacc401ea3ea (diff) | |
download | git-bug-c02528b77dfd2408bdabf3216e872d86c842a9cf.tar.gz |
webui: update most of dependencies
Diffstat (limited to 'webui/src/components')
-rw-r--r-- | webui/src/components/Content/BlockQuoteTag.tsx | 2 |
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} />; }; |