diff --git a/src/frontend/src/features/reactions/components/ReactionsToggle.tsx b/src/frontend/src/features/reactions/components/ReactionsToggle.tsx index 002b7c1b..38d950a3 100644 --- a/src/frontend/src/features/reactions/components/ReactionsToggle.tsx +++ b/src/frontend/src/features/reactions/components/ReactionsToggle.tsx @@ -22,6 +22,7 @@ export const ReactionsToggle = () => { square variant="primaryDark" aria-label={t('button')} + aria-expanded={isOpen} tooltip={t('button')} isSelected={isOpen} onChange={toggle} diff --git a/src/frontend/src/features/reactions/components/toolbar/ReactionButton.tsx b/src/frontend/src/features/reactions/components/toolbar/ReactionButton.tsx index 9664a244..3dd04a96 100644 --- a/src/frontend/src/features/reactions/components/toolbar/ReactionButton.tsx +++ b/src/frontend/src/features/reactions/components/toolbar/ReactionButton.tsx @@ -1,6 +1,5 @@ import { useTranslation } from 'react-i18next' import { css } from '@/styled-system/css' -import { getEmojiLabel } from '../../utils' import { Emoji } from '../../types' import { useReactions } from '../../hooks/useReactions' import { Button } from '@/primitives' @@ -11,7 +10,7 @@ export const ReactionButton = ({ emoji }: { emoji: Emoji }) => { return (