Fix formatting
This commit is contained in:
@@ -55,7 +55,8 @@ const DynamicJsonForm = ({
|
|||||||
const timeoutRef = useRef<ReturnType<typeof setTimeout>>();
|
const timeoutRef = useRef<ReturnType<typeof setTimeout>>();
|
||||||
|
|
||||||
// Create a debounced function to update parent state
|
// Create a debounced function to update parent state
|
||||||
const debouncedUpdateParent = useCallback((jsonString: string) => {
|
const debouncedUpdateParent = useCallback(
|
||||||
|
(jsonString: string) => {
|
||||||
// Clear any existing timeout
|
// Clear any existing timeout
|
||||||
if (timeoutRef.current) {
|
if (timeoutRef.current) {
|
||||||
clearTimeout(timeoutRef.current);
|
clearTimeout(timeoutRef.current);
|
||||||
@@ -71,7 +72,9 @@ const DynamicJsonForm = ({
|
|||||||
// Don't set error during normal typing
|
// Don't set error during normal typing
|
||||||
}
|
}
|
||||||
}, 300);
|
}, 300);
|
||||||
}, [onChange, setJsonError]);
|
},
|
||||||
|
[onChange, setJsonError],
|
||||||
|
);
|
||||||
|
|
||||||
// Update rawJsonValue when value prop changes
|
// Update rawJsonValue when value prop changes
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user