Skip to content

Commit

Permalink
added fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
arodidev authored and denniskigen committed Jul 12, 2024
1 parent 4b7bba8 commit 786c475
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,13 @@ function TestTypeSearchResults({ searchTerm, openOrderForm, focusAndClearSearchI
)}
<div className={styles.resultsContainer}>
{testTypes.map((testType) => (
<TestTypeSearchResultItem key={testType.conceptUuid} testType={testType} openOrderForm={openOrderForm} />
<>
<TestTypeSearchResultItem
key={testType.conceptUuid}
testType={testType}
openOrderForm={openOrderForm}
/>
</>
))}
</div>
</div>
Expand Down

0 comments on commit 786c475

Please sign in to comment.