Alerts should not have a hard-coded, unlocalizable title. It looks like this was addressed in #601, but now the problem is back?
Now we have:
variantLabel = variantLabel || capitalize(AlertVariant[variant]);
const readerTitle = (
<React.Fragment>
<span className={css(accessibleStyles.screenReader)}>{`${variantLabel} alert:`}</span>
{title}
</React.Fragment>
);```Reactions are currently unavailable
Alerts should not have a hard-coded, unlocalizable title. It looks like this was addressed in #601, but now the problem is back?
Now we have: