diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index e4c2c701f..1913160fd 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7724,10 +7724,6 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
- "icu:WhatsNew__v7.38--0": {
- "messageformat": "We fixed a bug with @ mentions that sometimes incorrectly included your own account in the autocomplete suggestion list. As a narcissistic workaround, you can still use third-person narration to talk about yourself in your group chats if you ever miss this bug.",
- "description": "(Deleted 2025/01/15) Release notes for version 7.38"
- },
"icu:WhatsNew__v7.39--0": {
"messageformat": "Now you can adjust the size of the chat list sidebar on touchscreen devices. So when you try to drag it won't be such a drag, and the smudges on your screen are simply evidence of the power emanating from your fingertips.",
"description": "(Deleted 2025/01/22) Release notes for version 7.39"
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 75357e56e..25de26a12 100644
--- a/ts/components/WhatsNewModal.tsx
+++ b/ts/components/WhatsNewModal.tsx
@@ -39,12 +39,10 @@ export function WhatsNewModal({
}: PropsType): JSX.Element {
let contentNode: ReactNode;
- // Use later: icu:WhatsNew__v7.40--1
-
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
- features: [],
+ features: [],
};
if (releaseNotes.features.length === 1 && !releaseNotes.header) {