Hey @vfede ,
Thanks for the great post. I was able to get mine working as well (also using supabase).
I had the same issue where WeWeb was updating the page title during the client side hydration.
The solution for me was to add a JS workflow after my collections load that overwrites the page title, so we can effectively overwrite WeWeb’s initial overwrite. Sharing for others that face the same issue.
IE: Worker Injection → WeWeb Automatic Overwrite → Page Workflow Overwrite
// Get the latest week's seo_title from your collection
const seoTitle = collections['6e3994dc-31af-4829-8ed3-3a4ee6e4e508']?.['data']?.[0]?.['seo_title'];
// Set the page title if it exists
if (seoTitle) {
document.title = seoTitle;
}