From cec3f8f99cd28c45fd9a8e7a34defb9df34d8ebc Mon Sep 17 00:00:00 2001 From: John Coburn Date: Fri, 20 Dec 2024 08:26:28 -0600 Subject: [PATCH] change MenuSection heading to 'h3' by default --- lib/MenuSection/MenuSection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MenuSection/MenuSection.js b/lib/MenuSection/MenuSection.js index 922167e3a..afb66662d 100644 --- a/lib/MenuSection/MenuSection.js +++ b/lib/MenuSection/MenuSection.js @@ -9,7 +9,7 @@ import uniqueId from 'lodash/uniqueId'; import css from './MenuSection.css'; import Headline from '../Headline'; -const MenuSection = ({ className, children, id, label, labelTag = 'h1', ...rest }) => { +const MenuSection = ({ className, children, id, label, labelTag = 'h3', ...rest }) => { const sectionId = id || uniqueId('menu-section-'); return (