import { ChatSuggestions } from '@agent/components/ChatSuggestions'; import { Rating } from '@agent/components/Rating'; import { __ } from '@wordpress/i18n'; // Note: this used to have more status like joined, cancelled, transferred etc. export const WorkflowMessage = ({ message }) => { const { answerId, suggestions } = message.details; return (
{answerId && } {suggestions?.length > 0 ? (

{__( "What's next? Would you like to do something else?", 'extendify-local', )}

) : null}
); };