Skip to content

Commit

Permalink
feat(web): Add default header for GEV organization (#16112)
Browse files Browse the repository at this point in the history
  • Loading branch information
mannipje authored Sep 23, 2024
1 parent f4ab138 commit 52f1575
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,15 @@ export const OrganizationHeader: React.FC<
/>
)
case 'gev':
return (
return n('usingDefaultHeader', false) ? (
<DefaultHeader
{...defaultProps}
image={n(
'gevHeaderImage',
'https://images.ctfassets.net/8k0h54kbe6bj/13E4vIA69gDNF87pkHwJgc/c2175b5ce58e50c93ddef5ea26854740/figura.png',
)}
/>
) : (
<GevHeader
organizationPage={organizationPage}
logoAltText={logoAltText}
Expand Down

0 comments on commit 52f1575

Please sign in to comment.