From bd6f4e3cfff13e869160ed15b3eb92bebeb025d0 Mon Sep 17 00:00:00 2001 From: Joseph J Helfenbein Date: Sat, 25 Jan 2025 06:33:47 -0500 Subject: [PATCH] fix imports --- src/app/(web)/account/page.jsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/(web)/account/page.jsx b/src/app/(web)/account/page.jsx index 2eff506..c3371be 100644 --- a/src/app/(web)/account/page.jsx +++ b/src/app/(web)/account/page.jsx @@ -2,7 +2,11 @@ import { useState, useEffect } from 'react'; import axios from 'axios'; import { useUser } from '@clerk/clerk-react'; -import { Button, Input, Label, Card, CardHeader, CardBody, CardFooter } from 'components/ui'; +import { Button } from '../../../components/ui/button'; +import { Input } from '../../../components/ui/input'; +import { Label } from '../../../components/ui/label'; +import { Card, CardHeader, CardContent, CardFooter } from '../../../components/ui/card'; + const AccountPage = () => { const { user } = useUser(); @@ -67,7 +71,7 @@ const AccountPage = () => {

Account Page

- +

{userData.name}

@@ -104,7 +108,7 @@ const AccountPage = () => {

Edit Patient: {selectedPatient.name}

- +
{medications.map((medication, index) => ( @@ -141,7 +145,7 @@ const AccountPage = () => { onChange={handleDiagnosesChange} />
-
+ @@ -149,7 +153,7 @@ const AccountPage = () => { )}
)} -
+ );