shell bypass 403
import { __ } from '@wordpress/i18n';
const { themeSlug } = window.extSharedData;
const { launchCompleted } = window.extAssistData;
export default {
slug: 'site-icon',
title: __('Upload a site icon', 'extendify-local'),
description: __(
'Ensure your website is on-brand by adding your site icon.',
'extendify-local',
),
buttonLabels: {
completed: __('Replace', 'extendify-local'),
notCompleted: __('Upload', 'extendify-local'),
},
type: 'modal',
dependencies: { goals: [], plugins: [] },
show: () => {
if (themeSlug === 'extendable') return true;
if (launchCompleted) return true;
return false;
},
backgroundImage:
'https://assets.extendify.com/assist-tasks/edit-homepage.webp',
};