Skip to content

Commit

Permalink
add formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
elissa-alarmani committed Oct 29, 2023
1 parent 4dc9495 commit 2b16f07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions browser/src/CopyNumberVariantPage/CopyNumberVariantPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ const CopyNumberVariantPage = ({ datasetId, variant }: CopyNumberVariantPageProp
This variant has consequences in {variant.genes.length} gene
{variant.genes.length !== 1 && 's'}.
</p>
{variant.genes.map((gene) => (
// @ts-expect-error TS(2769) FIXME: No overload matches this call.
<ListItem key={gene}>
<Link to={`/gene/${gene}`}>{gene}</Link>
</ListItem>
))}
{variant.genes.map((gene) => (
// @ts-expect-error TS(2769) FIXME: No overload matches this call.
<ListItem key={gene}>
<Link to={`/gene/${gene}`}>{gene}</Link>
</ListItem>
))}
</ResponsiveSection>
</Wrapper>
</Page>
Expand Down

0 comments on commit 2b16f07

Please sign in to comment.