File "jetpack-ai-scheduled-tasks-provider.js"
Full Path: /home/jovision/public_html/wp/wp-content/plugins/jetpack/_inc/jetpack-ai-scheduled-tasks-provider.js
File size: 441 bytes
MIME-type: application/javascript
Charset: utf-8
/**
* Agents Manager provider for the AI Hub Scheduled tasks empty view.
*
* The translated suggestions are supplied by Jetpack through agentsManagerData.
*/
/* global agentsManagerData */
export const providerId = 'jetpack-ai-hub-scheduled-tasks';
export const getEmptyViewSuggestions = () => {
if ( typeof agentsManagerData === 'undefined' ) {
return [];
}
return agentsManagerData.scheduledTaskEmptyViewSuggestions ?? [];
};