From ad666b6e8ee99a56981f6c86502da30d5b1ab35c Mon Sep 17 00:00:00 2001 From: Kevin Szuchet Date: Wed, 9 Aug 2023 11:15:22 +0200 Subject: [PATCH] chore: Disable eslint in one line --- src/components/VideoConference/Videoconference.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/VideoConference/Videoconference.tsx b/src/components/VideoConference/Videoconference.tsx index 4cec714..392205e 100644 --- a/src/components/VideoConference/Videoconference.tsx +++ b/src/components/VideoConference/Videoconference.tsx @@ -55,6 +55,8 @@ export function VideoConference({ chatMessageFormatter, ...props }: VideoConfere { updateOnlyOn: [RoomEvent.ActiveSpeakersChanged] } ) + // TODO: remove this unused declaration if it's not needed + // eslint-disable-next-line @typescript-eslint/no-unused-vars const participants = useParticipants({ updateOnlyOn: [RoomEvent.ParticipantConnected, RoomEvent.ParticipantDisconnected] })