Skip to content

Commit

Permalink
[#48] fix: solve subtitle problem
Browse files Browse the repository at this point in the history
  • Loading branch information
damla committed Feb 24, 2021
1 parent b3a714d commit 2b40d63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/custom-container/custom-container.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function CustomContainer ({
h1 !== undefined && <h1 className={styles.h1}>{h1}</h1>
}
{
h2 !== undefined && <h2 className={styles.h2}>{h3}</h2>
h2 !== undefined && <h2 className={styles.h2}>{h2}</h2>
}
{
h3 !== undefined && <h3 className={styles.h3}>{h3}</h3>
Expand Down

0 comments on commit 2b40d63

Please sign in to comment.