Skip to content

Commit

Permalink
Remove unused types
Browse files Browse the repository at this point in the history
  • Loading branch information
jtquach1 committed Apr 18, 2024
1 parent fd1c0f4 commit da745c4
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/views/Questionnaire/components/RemsInterface/RemsInterface.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,8 @@ import { Bundle } from 'fhir/r4';
import { Box } from '@mui/material';

interface RemsInterfaceProps {
remsAdminResponse: RemsAdminResponse;
specialtyRxBundle: Bundle;
}
interface RemsAdminResponse {
data: JsonData;
}

type MetRequirements = {
completed: boolean;
requirementName: string;
requirementDescription: string;
};

interface JsonData {
case_number: string;
status: string;
metRequirements: MetRequirements[];
}

export default function RemsInterface(props: RemsInterfaceProps) {
const [viewBundle, setViewBundle] = useState<boolean>(false);
Expand Down

0 comments on commit da745c4

Please sign in to comment.