seems alright

This commit is contained in:
Andras Schmelczer 2026-05-17 13:52:11 +01:00
parent ebe7bbb51d
commit eac1bd0d13
58 changed files with 23125 additions and 153505 deletions

View file

@ -507,7 +507,7 @@ export default function HomePage({
)}
</td>
{[row.postcode, row.guides].map((has, j) => {
const statusLabel = has ? 'Yes' : 'No';
const statusLabel = has ? t('common.yes') : t('common.no');
return (
<td
key={j}
@ -520,11 +520,11 @@ export default function HomePage({
);
})}
<td
aria-label="Yes"
aria-label={t('common.yes')}
className="px-1.5 md:px-3 py-2.5 md:py-3.5 text-center text-base text-green-500 bg-teal-50 dark:bg-teal-900/30"
>
<span aria-hidden="true">&#x2713;</span>
<span className="sr-only">Yes</span>
<span className="sr-only">{t('common.yes')}</span>
</td>
</tr>
))}