From 4293444d3e83c4f2a8a6500b7e2effb8e7fb35a1 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 9 Sep 2024 23:40:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8(frontend)=20clean=20unused=20impor?= =?UTF-8?q?ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Found unused imports that were breaking the build. Fixed them. --- .../controls/Participants/ParticipantListItem.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx b/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx index 9d815f41..a9675e06 100644 --- a/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx +++ b/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx @@ -7,18 +7,12 @@ import { Avatar } from '@/components/Avatar' import { getParticipantColor } from '@/features/rooms/utils/getParticipantColor' import { Participant, Track } from 'livekit-client' import { isLocal } from '@/utils/livekit' -import { ActiveSpeaker } from '@/features/rooms/components/ActiveSpeaker' import { useIsSpeaking, useTrackMutedIndicator, } from '@livekit/components-react' import Source = Track.Source -import { - RiMicFill, - RiMicLine, - RiMicOffFill, - RiMicOffLine, -} from '@remixicon/react' +import { RiMicFill, RiMicOffFill } from '@remixicon/react' import { Button, Dialog, P } from '@/primitives' import { useState } from 'react' import { useMuteParticipant } from '@/features/rooms/livekit/api/muteParticipant'