Skip to content

Commit

Permalink
fix: remove test code
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkmcadoo committed Jul 25, 2023
1 parent 03bf4db commit ffc1c0e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/components/PageHeading.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ const PageHeading = (props) => {
}
};

console.log('hasIcon', hasIcon(), props);

return (
<div
className={`${styles.pageHeadingContainer} ${
Expand All @@ -78,11 +76,7 @@ const PageHeading = (props) => {
/>
</div>
)}
{props.title ? (
<h1 className={styles.pageTitle}>{props.title} this is a test</h1>
) : (
''
)}
{props.title ? <h1 className={styles.pageTitle}>{props.title}</h1> : ''}
{props.subheader ? (
<p className={styles.pageSubheader}>{props.subheader}</p>
) : (
Expand Down

0 comments on commit ffc1c0e

Please sign in to comment.