fix eslint errors

This commit is contained in:
harshithpabbati 2022-01-10 16:38:26 +05:30
parent 1126143b6d
commit 41b7f8e7e2
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ import HeaderCapsule from '@custom/shared/components/HeaderCapsule';
import { useCallState } from '@custom/shared/contexts/CallProvider'; import { useCallState } from '@custom/shared/contexts/CallProvider';
import { useParticipants } from '@custom/shared/contexts/ParticipantsProvider'; import { useParticipants } from '@custom/shared/contexts/ParticipantsProvider';
import { useUIState } from '@custom/shared/contexts/UIStateProvider'; 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 { ReactComponent as IconLock } from '@custom/shared/icons/lock-md.svg';
import { slugify } from '@custom/shared/lib/slugify';
export const Header = () => { export const Header = () => {
const { roomInfo } = useCallState(); const { roomInfo } = useCallState();
@ -56,7 +56,7 @@ export const Header = () => {
`}</style> `}</style>
</header> </header>
), ),
[participantCount, customCapsule] [roomInfo.privacy, roomInfo.name, participantCount, customCapsule]
); );
}; };