File: /home/sahadove/wp-content/plugins/extendify/src/Agent/workflows/content/edit-post-strings-editor.js
import { UpdatePostConfirmEditor } from '@agent/workflows/content/components/UpdatePostConfirmEditor';
const { abilities, context } = window.extAgentData;
// When on the edit screen
export default {
available: () =>
abilities?.canEditPost &&
context?.usingBlockEditor &&
context?.adminPage &&
context?.postId,
id: 'edit-post-strings-editor',
whenFinished: { component: UpdatePostConfirmEditor },
};