| 1 |
import { demoFormWorkflow } from '@agent/workflows/canvas/components/demo-form-workflow'; |
| 2 |
import { __ } from '@wordpress/i18n'; |
| 3 |
import { sidebar } from '@wordpress/icons'; |
| 4 |
|
| 5 |
export default demoFormWorkflow({ |
| 6 |
id: 'demo-form-assisted', |
| 7 |
canvas: 'assisted', |
| 8 |
icon: sidebar, |
| 9 |
// translators: Extendify is the brand name and stays as-is. "assisted" names a demo variant where the agent can help fill the form. |
| 10 |
text: __('Extendify demo form assisted', 'extendify-local'), |
| 11 |
}); |
| 12 |
|