Skip to content

Commit

Permalink
Run npm run format to format source code (with Prettier)
Browse files Browse the repository at this point in the history
  • Loading branch information
eecavanna committed Feb 10, 2025
1 parent 63e704d commit 3f35dbb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/SectionHeader/SectionHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ const SectionHeader: React.FC<Props> = ({
classNameVal = `${styles.header} ion-margin ${styles.withinListHeader} ${className}`;
}

return (
<div className={classNameVal}>
{children}
</div>
);
return <div className={classNameVal}>{children}</div>;
};

export default SectionHeader;

0 comments on commit 3f35dbb

Please sign in to comment.