remove unneeded aria-live area's

This commit is contained in:
KDSBrowne 2023-04-01 20:10:41 +00:00
parent b3a6c0be98
commit f32ac70a7b
2 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ const ChatListItem = (props) => {
</UserAvatar>
)}
</Styled.ChatIcon>
<Styled.ChatName aria-live="off">
<Styled.ChatName>
{!compact
? (
<Styled.ChatNameMain>

View File

@ -123,7 +123,7 @@ class UserMessages extends PureComponent {
tabIndex={-1}
ref={(ref) => { this._msgsList = ref; }}
>
<Styled.List aria-live="polite">
<Styled.List>
<TransitionGroup ref={(ref) => { this._msgItems = ref; }}>
{this.getActiveChats()}
</TransitionGroup>