diff options
Diffstat (limited to 'src/components/Branding')
| -rw-r--r-- | src/components/Branding/Branding.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/Branding/Branding.tsx b/src/components/Branding/Branding.tsx index e5565a4..a8adf9b 100644 --- a/src/components/Branding/Branding.tsx +++ b/src/components/Branding/Branding.tsx @@ -12,7 +12,14 @@ const Branding: BrandingReturn = ({ isHome = false }) => { return ( <div className={styles.wrapper}> <div className={styles.logo}> - <Image src={photo} alt={t`${config.name} picture`} layout="intrinsic" /> + <Image + src={photo} + alt={t({ + message: `${config.name} picture`, + comment: 'Branding logo.', + })} + layout="intrinsic" + /> </div> {isHome ? ( <h1 className={styles.name}> |
