Skip to content

Commit

Permalink
Add missing key
Browse files Browse the repository at this point in the history
  • Loading branch information
FestiveKyle committed Oct 21, 2024
1 parent 9a61ad9 commit b7bbc3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/admin/AdminDomains.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,9 @@ export function AdminDomains({ orgSlug, orgId }) {
)}
>
{({ id: domainId, domain, claimTags, archived, rcode, organizations, assetState }, index) => (
<>
<React.Fragment key={`admindomain-${index}`}>
{index === 0 && <Divider borderBottomColor="gray.400" />}
<Flex p="1" key={'admindomain' + index} align="center" rounded="md" mb="1">
<Flex p="1" align="center" rounded="md" mb="1">
<Stack direction="row" flexGrow="0" mr="2">
<IconButton
data-testid={`remove-${index}`}
Expand Down Expand Up @@ -372,7 +372,7 @@ export function AdminDomains({ orgSlug, orgId }) {
</ABTestWrapper>
</Flex>
<Divider borderBottomColor="gray.400" />
</>
</React.Fragment>
)}
</ListOf>
</>
Expand Down

0 comments on commit b7bbc3e

Please sign in to comment.