fix eslint errors
This commit is contained in:
parent
1126143b6d
commit
41b7f8e7e2
|
|
@ -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]
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue