File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ import { useUser } from "@litespace/headless/context/user";
99import cn from "classnames" ;
1010import { useSocket } from "@litespace/headless/socket" ;
1111import { MediaCallProvider } from "@/hooks/mediaCall" ;
12+ import { UnsupportedBrowserDialog } from "@/components/Common/UnsupportedBrowserDialog" ;
13+ import { WebrtcCheckDialog } from "@/components/Common/WebrtcCheckDialog" ;
1214
1315type Params = Replace < UrlParamsOf < Web . Lesson > , "id" , string > ;
1416
@@ -56,6 +58,8 @@ const Lesson: React.FC = () => {
5658 >
5759 < Content lessonId = { lessonId } self = { user } />
5860 </ div >
61+ < UnsupportedBrowserDialog />
62+ < WebrtcCheckDialog />
5963 </ MediaCallProvider >
6064 ) ;
6165} ;
Original file line number Diff line number Diff line change 11import { InvalidTimeDialog } from "@/components/Common/InvalidTimeDialog" ;
2- import { UnsupportedBrowserDialog } from "@/components/Common/UnsupportedBrowserDialog" ;
3- import { WebrtcCheckDialog } from "@/components/Common/WebrtcCheckDialog" ;
42import FloatingButtons from "@/components/Layout/FloatingButtons" ;
53import Navbar from "@/components/Layout/Navbar" ;
64import Sidebar from "@/components/Layout/Sidebar" ;
@@ -209,8 +207,6 @@ const Root: React.FC = () => {
209207 ) }
210208 >
211209 < InvalidTimeDialog />
212- < UnsupportedBrowserDialog />
213- < WebrtcCheckDialog />
214210
215211 < ConfirmationDialog
216212 open = { tourDialogOpen && stepNumber !== studentTour . tour . steps . length }
You can’t perform that action at this time.
0 commit comments