diff --git a/web/src/components/core/Section.jsx b/web/src/components/core/Section.jsx index 1e16d6b486..9b165b8643 100644 --- a/web/src/components/core/Section.jsx +++ b/web/src/components/core/Section.jsx @@ -31,14 +31,13 @@ import { ValidationErrors } from "~/components/core"; * * @param {object} props * @param {string} [props.name] - the name of the icon - * @param {number} [props.size=32] - the icon size * * @return {React.ReactElement} */ -const SectionIcon = ({ name, size = 32 }) => { +const SectionIcon = ({ name }) => { if (!name) return null; - return ; + return ; }; /**