From ab0b1c172dc02911bdb7a41a21bfa251f6f3dcdc Mon Sep 17 00:00:00 2001 From: harshithpabbati Date: Fri, 28 Jan 2022 15:03:08 +0530 Subject: [PATCH] fixes the import issue with the well component - this is causing the error screen when live-streaming fails --- custom/live-streaming/components/LiveStreamingModal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/live-streaming/components/LiveStreamingModal.js b/custom/live-streaming/components/LiveStreamingModal.js index d877d67..97896c8 100644 --- a/custom/live-streaming/components/LiveStreamingModal.js +++ b/custom/live-streaming/components/LiveStreamingModal.js @@ -4,7 +4,7 @@ import { CardBody } from '@custom/shared/components/Card'; import Field from '@custom/shared/components/Field'; import { TextInput, SelectInput } from '@custom/shared/components/Input'; import Modal from '@custom/shared/components/Modal'; -import { Well } from '@custom/shared/components/Well'; +import Well from '@custom/shared/components/Well'; import { useCallState } from '@custom/shared/contexts/CallProvider'; import { useParticipants } from '@custom/shared/contexts/ParticipantsProvider'; import { useUIState } from '@custom/shared/contexts/UIStateProvider';