I’m using a Custom UI together with the Generate Asset block to produce an HTML asset.
The HTML itself is generated correctly, but when the asset is publicly shared, the page title always appears as MindStudio Interface.
What I’ve tried:
In my Custom UI code, I added the following:
import { useEffect } from 'react';
useEffect(() => {
document.title = 'Kobeissi Letter Market Commentary, ' + currentDate;
}, []);
This works as expected when accessing the raw HTML file directly from the MindStudio CDN:
However, when viewing the publicly shared asset, the title still shows as MindStudio Interface:
https://app.mindstudio.ai/share/public/asset/GrMd0uHgIWtAm3VKQzHiW
Question:
Is there a supported way to control or override the page title for publicly shared assets generated via the Generate Asset block and a Custom UI? Or is the shared asset wrapper enforcing a fixed title by design?