From 468ba0916c27216a4ec98ab3a99d3a499a1b9e9b Mon Sep 17 00:00:00 2001 From: Martin Bohal Date: Tue, 13 Feb 2024 09:11:43 +0100 Subject: [PATCH] Update src/components/_helpers/transferProps.js Co-authored-by: Adam Kudrna --- src/components/_helpers/transferProps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/_helpers/transferProps.js b/src/components/_helpers/transferProps.js index 21963f1e..89f66a99 100644 --- a/src/components/_helpers/transferProps.js +++ b/src/components/_helpers/transferProps.js @@ -2,7 +2,7 @@ * Controls passing of props from the React component to the HTML element * * Sometimes it is useful to have a mechanism to pass props from the React component to a rendered HTML element. - * It enables making the component interactive and it helps to improve its accessibility. However some props should + * It enables making the component interactive and helps improve its accessibility. However some props should * never be passed to the HTML element as it would break things. This function is used to filter out such props. * * When run in development mode the function will log error to the console if any invalid props are passed.