diff --git a/aidbox-forms-smart-launch-2/src/app/(authorized)/questionnaire-responses/[id]/page.tsx b/aidbox-forms-smart-launch-2/src/app/(authorized)/questionnaire-responses/[id]/page.tsx index b69ce4d..573339c 100644 --- a/aidbox-forms-smart-launch-2/src/app/(authorized)/questionnaire-responses/[id]/page.tsx +++ b/aidbox-forms-smart-launch-2/src/app/(authorized)/questionnaire-responses/[id]/page.tsx @@ -1,7 +1,6 @@ import { getCurrentAidbox } from "@/lib/server/smart"; import { PageHeader } from "@/components/page-header"; import { Questionnaire, QuestionnaireResponse } from "fhir/r4"; -import { QuestionnaireEditor } from "@/components/questionnaire-editor"; import { getFirst } from "@/lib/utils"; import { QuestionnaireResponseEditor } from "@/components/questionnaire-response-editor"; diff --git a/aidbox-forms-smart-launch-2/src/app/(authorized)/questionnaires/page.tsx b/aidbox-forms-smart-launch-2/src/app/(authorized)/questionnaires/page.tsx index f246c0e..1eb2369 100644 --- a/aidbox-forms-smart-launch-2/src/app/(authorized)/questionnaires/page.tsx +++ b/aidbox-forms-smart-launch-2/src/app/(authorized)/questionnaires/page.tsx @@ -21,9 +21,9 @@ import { Search } from "lucide-react"; import { Pager } from "@/components/pager"; import { Bundle, + Parameters, Questionnaire, QuestionnaireResponse, - Parameters, } from "fhir/r4"; import { isDefined } from "@/lib/utils"; import { decidePageSize } from "@/lib/server/utils"; diff --git a/aidbox-forms-smart-launch-2/src/components/questionnaire-response-editor.tsx b/aidbox-forms-smart-launch-2/src/components/questionnaire-response-editor.tsx index 6607a92..d5b23bd 100644 --- a/aidbox-forms-smart-launch-2/src/components/questionnaire-response-editor.tsx +++ b/aidbox-forms-smart-launch-2/src/components/questionnaire-response-editor.tsx @@ -1,6 +1,5 @@ "use client"; -import { FormsBuilder } from "@/components/forms-builder"; import { Questionnaire, QuestionnaireResponse } from "fhir/r4"; import { Suspense, useTransition } from "react"; import { Spinner } from "@/components/spinner";