Skip to content

Commit

Permalink
fix: remove string encapsulation
Browse files Browse the repository at this point in the history
  • Loading branch information
gjmcn committed May 13, 2024
1 parent 2140716 commit ddd2aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/platform/src/pages/VariantPage/ProfileHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function ProfileHeader({ varId }: ProfileHeaderProps) {
<Box>
<Typography variant="subtitle1" mt={0}>Location</Typography>
<Field loading={loading} title="GRCh38">
{`${metadata.chromosome}:${metadata.position}`}
{metadata.chromosome}:{metadata.position}
</Field>
<Field loading={loading} title="Reference Allele">
{metadata.referenceAllele}
Expand Down

0 comments on commit ddd2aef

Please sign in to comment.