# extendify/3.0.6/src/Agent/workflows/content/components/UpdatePostConfirmEditor.jsx

Extendify, version 3.0.6. 13 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.0.6/code/src/Agent/workflows/content/components/UpdatePostConfirmEditor.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.0.6/raw/src/Agent/workflows/content/components/UpdatePostConfirmEditor.jsx
- Modified: 2025-09-09T15:55:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.0.6/code/src/Agent/workflows/content/components/UpdatePostConfirmEditor.jsx#L10-L20`.

```jsx
import { useEffect } from '@wordpress/element';

export const UpdatePostConfirmEditor = ({ inputs, onConfirm }) => {
	useEffect(() => {
		const id = requestAnimationFrame(() => {
			onConfirm({ data: inputs });
		});
		return () => cancelAnimationFrame(id);
	}, [inputs, onConfirm]);

	return null;
};

```
