File "update-block-logo.js"
Full Path: /home/buyiwexj/public_html/wp-content/plugins/extendify/src/Agent/workflows/block-selector/tools/update-block-logo.js
File size: 189 bytes
MIME-type: text/x-java
Charset: utf-8
import apiFetch from '@wordpress/api-fetch';
export default async ({ imageId }) => {
await apiFetch({
path: '/wp/v2/settings',
method: 'POST',
data: { site_logo: imageId },
});
};