From 31b5093e39ab633266d8b6624b36ea0632b23dac Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Fri, 19 Aug 2022 16:12:36 -0600 Subject: [PATCH] Ignore `forbid-prop-types` to fix lint --- src/components/Section.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Section.js b/src/components/Section.js index a1b7914a6bff..a0fbf34f0833 100644 --- a/src/components/Section.js +++ b/src/components/Section.js @@ -24,6 +24,7 @@ const propTypes = { children: PropTypes.node, /** Customize the Section container */ + // eslint-disable-next-line react/forbid-prop-types containerStyles: PropTypes.arrayOf(PropTypes.object), };