Add accessible label to the in-call logo mark

This commit is contained in:
Robin
2023-09-13 16:17:37 -04:00
parent 1f95ec7a0c
commit 21c234ebee

View File

@@ -382,8 +382,12 @@ export function InCallView({
<div className={styles.footer}> <div className={styles.footer}>
{!mobile && !hideHeader && ( {!mobile && !hideHeader && (
<div className={styles.logo}> <div className={styles.logo}>
<LogoMark width={24} height={24} /> <LogoMark width={24} height={24} aria-hidden />
<LogoType width={80} height={11} /> <LogoType
width={80}
height={11}
aria-label={import.meta.env.VITE_PRODUCT_NAME || "Element Call"}
/>
</div> </div>
)} )}
<div className={styles.buttons}>{buttons}</div> <div className={styles.buttons}>{buttons}</div>