diff --git a/src/components/_helpers/transferProps.js b/src/components/_helpers/transferProps.js index df1aa4ff..2fa84f41 100644 --- a/src/components/_helpers/transferProps.js +++ b/src/components/_helpers/transferProps.js @@ -14,6 +14,7 @@ export const transferProps = (props) => { const { children, className, + contentEditable, dangerouslySetInnerHTML, ref, staticContext, @@ -26,6 +27,7 @@ export const transferProps = (props) => { const invalidProps = Object.keys({ children, className, + contentEditable, dangerouslySetInnerHTML, ref, staticContext, @@ -36,7 +38,7 @@ export const transferProps = (props) => { if (invalidProps.length > 0) { // eslint-disable-next-line no-console - console.error(`Invalid prop(s) supplied to the transferProps method: ${invalidProps.join(', ')}`); + console.error(`Invalid prop(s) supplied to the "transferProps" function: "${invalidProps.join('", "')}"`); } }