Skip to content

Commit

Permalink
file fix after rm samefileimport 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaJ2305 committed Jan 17, 2025
1 parent 437c732 commit 8b38470
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/Patient/diagnosis/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { useQuery } from "@tanstack/react-query";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Skeleton } from "@/components/ui/skeleton";

import { DiagnosisTable } from "@/components/Patient/diagnosis/DiagnosisTable";

import query from "@/Utils/request/query";
import diagnosisApi from "@/types/emr/diagnosis/diagnosisApi";

import { DiagnosisTable } from "./DiagnosisTable";

interface DiagnosisListProps {
patientId: string;
encounterId?: string;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Patient/symptoms/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { useQuery } from "@tanstack/react-query";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Skeleton } from "@/components/ui/skeleton";

import { SymptomTable } from "@/components/Patient/symptoms/SymptomTable";

import query from "@/Utils/request/query";
import symptomApi from "@/types/emr/symptom/symptomApi";

import { SymptomTable } from "./SymptomTable";

interface SymptomsListProps {
patientId: string;
encounterId?: string;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Questionnaire/QuestionRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import { useEffect, useRef } from "react";

import { cn } from "@/lib/utils";

import { QuestionGroup } from "@/components/Questionnaire/QuestionTypes/QuestionGroup";

import { QuestionValidationError } from "@/types/questionnaire/batch";
import { QuestionnaireResponse } from "@/types/questionnaire/form";
import {
Question,
StructuredQuestionType,
} from "@/types/questionnaire/question";

import { QuestionGroup } from "./QuestionTypes/QuestionGroup";

// Questions that should be rendered full width
const FULL_WIDTH_QUESTION_TYPES: StructuredQuestionType[] = [
"medication_request",
Expand Down

0 comments on commit 8b38470

Please sign in to comment.