Skip to content

Commit

Permalink
Merge main and resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
raviteja83 authored Jun 14, 2024
1 parent 9422397 commit c6f0747
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,8 @@ import { useRoomLayoutHeader } from '../../../provider/roomLayoutProvider/hooks/
import { useSheetToggle } from '../../AppData/useSheet';
// @ts-ignore: No implicit any
import { usePollViewToggle, useSidepaneToggle } from '../../AppData/useSidepane';
import {
useSetIsCaptionEnabled,
useShowPolls,
// @ts-ignore: No implicit Any
} from '../../AppData/useUISettings';
// @ts-ignore: No implicit Any
import { useIsCaptionEnabled, useShowPolls } from '../../AppData/useUISettings';
// @ts-ignore: No implicit any
import { useDropdownList } from '../../hooks/useDropdownList';
import { useMyMetadata } from '../../hooks/useMetadata';
Expand Down Expand Up @@ -116,7 +113,7 @@ export const MwebOptions = ({
const isTranscriptionAllowed = useHMSStore(selectIsTranscriptionAllowedByMode(HMSTranscriptionMode.CAPTION));
const isTranscriptionEnabled = useHMSStore(selectIsTranscriptionEnabled);

const [isCaptionEnabled] = useSetIsCaptionEnabled();
const isCaptionEnabled = useIsCaptionEnabled();
useDropdownList({ open: openModals.size > 0 || openOptionsSheet || openSettingsSheet, name: 'MoreSettings' });

const updateState = (modalName: string, value: boolean) => {
Expand Down

0 comments on commit c6f0747

Please sign in to comment.