diff --git a/src/content/reference/react-dom/components/common.md b/src/content/reference/react-dom/components/common.md index 78d2713bcd1..012e33a2da6 100644 --- a/src/content/reference/react-dom/components/common.md +++ b/src/content/reference/react-dom/components/common.md @@ -505,7 +505,6 @@ An event handler type for keyboard events. * [`getModifierState(key)`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifierState) * [`key`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) * [`keyCode`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode) - * [`locale`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/locale) * [`metaKey`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/metaKey) * [`location`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/location) * [`repeat`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/repeat) @@ -638,7 +637,6 @@ An event handler type for [touch events.](https://developer.mozilla.org/en-US/do * [`altKey`](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/altKey) * [`ctrlKey`](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/ctrlKey) * [`changedTouches`](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/changedTouches) - * [`getModifierState(key)`](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/getModifierState) * [`metaKey`](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/metaKey) * [`shiftKey`](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/shiftKey) * [`touches`](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/touches) diff --git a/src/content/reference/react-dom/components/form.md b/src/content/reference/react-dom/components/form.md index 25d1ba4e9f1..a94d0100a99 100644 --- a/src/content/reference/react-dom/components/form.md +++ b/src/content/reference/react-dom/components/form.md @@ -118,7 +118,7 @@ function AddToCart({productId}) { } ``` -In lieu of using hidden form fields to provide data to the `
`'s action, you can call the `bind` method to supply it with extra arguments. This will bind a new argument (`productId`) to the function in addition to the `formData` that is passed as a argument to the function. +Instead of using hidden form fields to provide data to the ``'s action, you can call the `bind` method to supply it with extra arguments. This will bind a new argument (`productId`) to the function in addition to the `formData` that is passed as a argument to the function. ```jsx [[1, 8, "bind"], [2,8, "productId"], [2,4, "productId"], [3,4, "formData"]] import { updateCart } from './lib.js'; diff --git a/src/content/reference/react-dom/components/index.md b/src/content/reference/react-dom/components/index.md index 877ff97fc5a..07dff950f66 100644 --- a/src/content/reference/react-dom/components/index.md +++ b/src/content/reference/react-dom/components/index.md @@ -181,7 +181,6 @@ React supports all built-in browser SVG components. This includes: * [``](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/clipPath) * [``](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs) * [``](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc) -* [``](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/discard) * [``](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse) * [``](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feBlend) * [``](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feColorMatrix) diff --git a/src/content/reference/react/useOptimistic.md b/src/content/reference/react/useOptimistic.md index 47593a0ae5e..2807001a49c 100644 --- a/src/content/reference/react/useOptimistic.md +++ b/src/content/reference/react/useOptimistic.md @@ -103,7 +103,7 @@ function Thread({ messages, sendMessage }) { ))} - +