Skip to content

Commit

Permalink
style(OntologyContainer.tsx): remove unnecessary space after Ontology…
Browse files Browse the repository at this point in the history
…TabLayout component

The commit removes the unnecessary space after the OntologyTabLayout component in the OntologyContainer file to improve code readability and maintain consistency in coding style.
  • Loading branch information
ktun95 committed Feb 4, 2025
1 parent c2c0cd7 commit e42a85f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface OntologyContainerProperties {
}
const OntologyContainer = ({ goas }: OntologyContainerProperties) => (
<Typography component="div">
<OntologyTabLayout goas={goas} />{" "}
<OntologyTabLayout goas={goas} />

Check failure on line 14 in apps/genome-page/components/features/Ontology/OntologyContainer.tsx

View workflow job for this annotation

GitHub Actions / ESLint Report Analysis

apps/genome-page/components/features/Ontology/OntologyContainer.tsx#L14

[prettier/prettier] Delete `··`
</Typography>
)

Expand Down

0 comments on commit e42a85f

Please sign in to comment.