gatsby-core-theme 44.4.61 → 44.4.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [44.4.62](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.61...v44.4.62) (2025-10-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add title comment section as props ([a265fde](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/a265fde61aa044113be71008c9340ea51e82b42d))
7
+
1
8
  ## [44.4.61](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.60...v44.4.61) (2025-10-10)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.4.61",
3
+ "version": "44.4.62",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -18,6 +18,7 @@ const LeaveCommentForm = ({
18
18
  failMessage = 'Comment Not Added',
19
19
  validationMessage = 'Fill all required fields',
20
20
  buttonIcon = <FaArrowRight fontSize={20} title="Right-pointing Arrow Icon" />,
21
+ titleTag = 'h2',
21
22
  }) => {
22
23
  const activeMarket = page?.market;
23
24
  const isDev = process.env.NODE_ENV === 'development';
@@ -85,7 +86,7 @@ const LeaveCommentForm = ({
85
86
  validationMessage={validationMessage}
86
87
  path={page?.path}
87
88
  buttonIcon={buttonIcon}
88
- titleType='h3'
89
+ titleType={titleTag}
89
90
  customClass='commentForm'
90
91
  />
91
92
  };
@@ -105,6 +106,7 @@ LeaveCommentForm.propTypes = {
105
106
  showButtonIcon: PropTypes.bool,
106
107
  showLabels: PropTypes.bool,
107
108
  buttonIcon: PropTypes.element,
109
+ titleTag: PropTypes.string,
108
110
  };
109
111
 
110
112
  export default LeaveCommentForm;