Skip to content

Commit

Permalink
update imports (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad authored Oct 23, 2024
1 parent fe52a21 commit f94c03c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/DoctorConnectButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { navigate } from "raviger";

import CareIcon from "@core/CAREUI/icons/CareIcon";
import { triggerGoal } from "@core/Integrations/Plausible";
import useAuthUser from "@core/Common/hooks/useAuthUser";
import useAuthUser from "@core/common/hooks/useAuthUser";

import { DoctorConnectButtonComponentType } from "@/pluginTypes";

Expand Down
4 changes: 2 additions & 2 deletions src/components/DoctorLiveConnect.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react";

import LiveKitComponent from "./LiveKitComponent";
import { useAuthContext } from "@core/Common/hooks/useAuthUser";
import { useAuthContext } from "@core/common/hooks/useAuthUser";

const PageTitle = React.lazy(() => import("@core/Components/Common/PageTitle"));
const PageTitle = React.lazy(() => import("@core/components/Common/PageTitle"));

const DoctorLiveConnect = ({ username }: { username: string }) => {
const { user: currentUser } = useAuthContext();
Expand Down
4 changes: 2 additions & 2 deletions src/components/LiveKitComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useEffect, useState } from "react";

import request from "@core/Utils/request/request";
import routes from "../api/api";
import ErrorBoundary from "@core/Components/Common/ErrorBoundary";
import ErrorBoundary from "@core/components/Common/ErrorBoundary";

import {
ControlBar,
Expand Down Expand Up @@ -91,7 +91,7 @@ function MyVideoConference() {
{ source: Track.Source.Camera, withPlaceholder: true },
{ source: Track.Source.ScreenShare, withPlaceholder: false },
],
{ onlySubscribed: false },
{ onlySubscribed: false }
);
return (
<GridLayout
Expand Down

0 comments on commit f94c03c

Please sign in to comment.