From 08f9dc5e83d32bf5e691cf2f68a9588c86bcbdf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 17 Aug 2022 09:14:25 +0200 Subject: [PATCH] fix(participants-pane) fix button impport Fixes: https://community.jitsi.org/t/navigation-link-in-participants-button-broken-after-usage-of-lobby-chat/116606 --- .../participants-pane/components/web/LobbyParticipantItem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/participants-pane/components/web/LobbyParticipantItem.js b/react/features/participants-pane/components/web/LobbyParticipantItem.js index 9d0747f29..551c69efc 100644 --- a/react/features/participants-pane/components/web/LobbyParticipantItem.js +++ b/react/features/participants-pane/components/web/LobbyParticipantItem.js @@ -8,8 +8,8 @@ import { useSelector } from 'react-redux'; import { ContextMenu, ContextMenuItemGroup } from '../../../base/components'; import { IconChat, IconCloseCircle, IconHorizontalPoints } from '../../../base/icons'; import { hasRaisedHand } from '../../../base/participants'; -import { BUTTON_TYPES } from '../../../base/react/constants'; import Button from '../../../base/ui/components/web/Button'; +import { BUTTON_TYPES } from '../../../base/ui/constants'; import { showLobbyChatButton } from '../../../lobby/functions'; import { ACTION_TRIGGER, MEDIA_STATE } from '../../constants'; import { useLobbyActions } from '../../hooks';