From 41b7f8e7e27bfe476c58727cf562388f25b2d33b Mon Sep 17 00:00:00 2001 From: harshithpabbati Date: Mon, 10 Jan 2022 16:38:26 +0530 Subject: [PATCH] fix eslint errors --- custom/fitness-demo/components/Call/Header.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/fitness-demo/components/Call/Header.js b/custom/fitness-demo/components/Call/Header.js index 640604a..8688550 100644 --- a/custom/fitness-demo/components/Call/Header.js +++ b/custom/fitness-demo/components/Call/Header.js @@ -3,8 +3,8 @@ import HeaderCapsule from '@custom/shared/components/HeaderCapsule'; import { useCallState } from '@custom/shared/contexts/CallProvider'; import { useParticipants } from '@custom/shared/contexts/ParticipantsProvider'; import { useUIState } from '@custom/shared/contexts/UIStateProvider'; -import { slugify } from '@custom/shared/lib/slugify'; import { ReactComponent as IconLock } from '@custom/shared/icons/lock-md.svg'; +import { slugify } from '@custom/shared/lib/slugify'; export const Header = () => { const { roomInfo } = useCallState(); @@ -56,7 +56,7 @@ export const Header = () => { `} ), - [participantCount, customCapsule] + [roomInfo.privacy, roomInfo.name, participantCount, customCapsule] ); };