diff --git a/src/components/Comments/ToggleCommentButton.tsx b/src/components/Comments/ToggleCommentButton.tsx index 0d159c77d..92be495ac 100644 --- a/src/components/Comments/ToggleCommentButton.tsx +++ b/src/components/Comments/ToggleCommentButton.tsx @@ -1,6 +1,6 @@ import { useQuery } from '@apollo/client'; import { Comment } from '@mui/icons-material'; -import { Badge } from '@mui/material'; +import { Badge, Tooltip } from '@mui/material'; import { Except } from 'type-fest'; import { Feature } from '../Feature'; import { IconButton, IconButtonProps } from '../IconButton'; @@ -24,11 +24,13 @@ export const ToggleCommentsButton = ({ return ( - toggleCommentsBar()} {...rest}> - - - - + + toggleCommentsBar()} {...rest}> + + + + + ); };