diff --git a/packages/react-dom/src/client/ReactDOMInput.js b/packages/react-dom/src/client/ReactDOMInput.js index 9a0527742a..c449e6b620 100644 --- a/packages/react-dom/src/client/ReactDOMInput.js +++ b/packages/react-dom/src/client/ReactDOMInput.js @@ -277,7 +277,7 @@ export function postMountWrapper( } } else { // When syncing the value attribute, the value property should use - // the the wrapperState._initialValue property. This uses: + // the wrapperState._initialValue property. This uses: // // 1. The value React property when present // 2. The defaultValue React property when present @@ -330,7 +330,7 @@ export function postMountWrapper( node.defaultChecked = !!props.defaultChecked; } } else { - // When syncing the checked attribute, both the the checked property and + // When syncing the checked attribute, both the checked property and // attribute are assigned at the same time using defaultChecked. This uses: // // 1. The checked React property when present