Skip to content

Commit

Permalink
Merge branch 'rob/2646-align-patient-info-population-between-design-a…
Browse files Browse the repository at this point in the history
…nd-dev' into bob/debug-e2es
  • Loading branch information
Bob Zhao committed Oct 15, 2024
2 parents b38e81d + a8908a5 commit 5b781df
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,8 @@ const SearchForm: React.FC<SearchFormProps> = ({
);
const [firstName, setFirstName] = useState<string>("");
const [lastName, setLastName] = useState<string>("");
const [fhirServer, setFhirServer] = useState<FHIR_SERVERS>(
"Public HAPI: Direct",
);
const [fhirServer, setFhirServer] = useState<FHIR_SERVERS>();
// "Public HAPI: Direct",
const [phone, setPhone] = useState<string>("");
const [dob, setDOB] = useState<string>("");
const [mrn, setMRN] = useState<string>("");
Expand Down Expand Up @@ -250,6 +249,7 @@ const SearchForm: React.FC<SearchFormProps> = ({
name="fhir_server"
value={fhirServer}
defaultValue={""}
// defaultValue={"Public HAPI: Direct"}
onChange={(event) => {
setFhirServer(event.target.value as FHIR_SERVERS);
}}
Expand Down

0 comments on commit 5b781df

Please sign in to comment.