Skip to content

Commit 2396863

Browse files
committed
Add Betsy Smith-Johnson test patient info as patient field defaults
1 parent a990a7f commit 2396863

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/lib/FetchAD.svelte

+5-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
let fetchError = '';
2020
2121
let mrn = '';
22-
let first = '';
23-
let last = '';
24-
let dob = '';
22+
let first = 'Betsy';
23+
let last = 'Smith-Johnson';
24+
let dob = '1950-11-15';
2525
let address1 = '';
2626
let address2 = '';
2727
let city = '';
@@ -124,7 +124,8 @@
124124
query += city ? `address-city=${city}&` : '';
125125
query += state ? `address-state=${state}&` : '';
126126
query += zip ? `address-postalcode=${zip}&` : '';
127-
return query.substring(0, query.length - 1);
127+
query += 'active=true';
128+
return query;
128129
}
129130
130131
async function fetchPatient(patient: any) {

0 commit comments

Comments
 (0)