fix: correct hero badge URL reading from id.contact.site
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
387cd61ec2
commit
1e0f77d88b
1 changed files with 1 additions and 1 deletions
|
|
@ -2498,7 +2498,7 @@
|
|||
const id = d.identity;
|
||||
|
||||
// ── HERO ──
|
||||
const heroId = `${esc(id.entreprise)} // ${esc(id.titre)} // ${esc(id.site || '')}`;
|
||||
const heroId = `${esc(id.entreprise)} // ${esc(id.titre)} // ${esc((id.contact && id.contact.site) || '')}`;
|
||||
const heroHTML = `
|
||||
<header class="hero">
|
||||
<div class="hero-bg"></div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue