diff --git a/custom/live-transcription/components/TranscriptionAside.js b/custom/live-transcription/components/TranscriptionAside.js index a5dd650..c4792a1 100644 --- a/custom/live-transcription/components/TranscriptionAside.js +++ b/custom/live-transcription/components/TranscriptionAside.js @@ -3,8 +3,8 @@ import { Aside } from '@custom/shared/components/Aside'; import Button from '@custom/shared/components/Button'; import { useCallState } from '@custom/shared/contexts/CallProvider'; import { useParticipants } from '@custom/shared/contexts/ParticipantsProvider'; -import { useUIState } from '@custom/shared/contexts/UIStateProvider'; import { useTranscription } from '@custom/shared/contexts/TranscriptionProvider'; +import { useUIState } from '@custom/shared/contexts/UIStateProvider'; export const TRANSCRIPTION_ASIDE = 'transcription'; diff --git a/custom/live-transcription/components/Tray.js b/custom/live-transcription/components/Tray.js index d23b240..b328feb 100644 --- a/custom/live-transcription/components/Tray.js +++ b/custom/live-transcription/components/Tray.js @@ -1,9 +1,9 @@ import React from 'react'; import { TrayButton } from '@custom/shared/components/Tray'; +import { useTranscription } from '@custom/shared/contexts/TranscriptionProvider'; import { useUIState } from '@custom/shared/contexts/UIStateProvider'; import { ReactComponent as IconTranscription } from '@custom/shared/icons/chat-md.svg'; -import { useTranscription } from '@custom/shared/contexts/TranscriptionProvider'; import { TRANSCRIPTION_ASIDE } from './TranscriptionAside'; export const Tray = () => {