Skip to content

Commit

Permalink
adding step commentary
Browse files Browse the repository at this point in the history
  • Loading branch information
robertandremitchell committed Oct 16, 2024
1 parent cf7f962 commit ffc0498
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions query-connector/src/app/query/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ const Query: React.FC = () => {
/>
)}

{/* Step 2 */}
{mode === "patient-results" && (
<>
<PatientSearchResults
Expand All @@ -71,6 +72,7 @@ const Query: React.FC = () => {
</>
)}

{/* Step 3 */}
{mode === "select-query" && (
<SelectQuery
goBack={() => setMode("patient-results")}
Expand All @@ -86,6 +88,7 @@ const Query: React.FC = () => {
/>
)}

{/* Step 4 */}
{mode === "results" && (
<>
{resultsQueryResponse && (
Expand Down

0 comments on commit ffc0498

Please sign in to comment.