Skip to content
This repository was archived by the owner on Apr 7, 2025. It is now read-only.

Commit ffc1c0e

Browse files
committed
fix: remove test code
1 parent 03bf4db commit ffc1c0e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/components/PageHeading.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ const PageHeading = (props) => {
5858
}
5959
};
6060

61-
console.log('hasIcon', hasIcon(), props);
62-
6361
return (
6462
<div
6563
className={`${styles.pageHeadingContainer} ${
@@ -78,11 +76,7 @@ const PageHeading = (props) => {
7876
/>
7977
</div>
8078
)}
81-
{props.title ? (
82-
<h1 className={styles.pageTitle}>{props.title} this is a test</h1>
83-
) : (
84-
''
85-
)}
79+
{props.title ? <h1 className={styles.pageTitle}>{props.title}</h1> : ''}
8680
{props.subheader ? (
8781
<p className={styles.pageSubheader}>{props.subheader}</p>
8882
) : (

0 commit comments

Comments
 (0)