myoperator-mcp 0.2.347 → 0.2.348
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9825,7 +9825,7 @@ const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
|
|
|
9825
9825
|
}: TextareaProps,
|
|
9826
9826
|
ref
|
|
9827
9827
|
) => {
|
|
9828
|
-
const textareaRef = React.useRef<HTMLTextAreaElement>(null);
|
|
9828
|
+
const textareaRef = React.useRef<HTMLTextAreaElement | null>(null);
|
|
9829
9829
|
const pendingSelectionRef = React.useRef<[number, number] | null>(null);
|
|
9830
9830
|
|
|
9831
9831
|
const setTextareaRef = React.useCallback(
|
package/package.json
CHANGED