Release notes for 7.32

This commit is contained in:
Fedor Indutny 2024-10-30 14:25:53 -07:00
parent fb31d9d28e
commit 4f6e361f5c
2 changed files with 10 additions and 37 deletions

View file

@ -33,16 +33,6 @@ export function ExternalLink(props: {
);
}
function linkMajorMayer(
children: ReadonlyArray<string | JSX.Element>
): JSX.Element {
return (
<ExternalLink href="https://github.com/major-mayer">
{children}
</ExternalLink>
);
}
export function WhatsNewModal({
i18n,
hideWhatsNewModal,
@ -53,13 +43,8 @@ export function WhatsNewModal({
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
<I18n
i18n={i18n}
id="icu:WhatsNew__v7.31--0"
components={{
linkMajorMayer,
}}
/>,
<I18n i18n={i18n} id="icu:WhatsNew__v7.32--0" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.32--1" />,
],
};