diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 66276f8c8f..cbee640a12 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7359,10 +7359,6 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
- "icu:WhatsNew__v7.14--0": {
- "messageformat": "If you're tired of losing your voice, we fixed a bug where switching to another chat or application while recording a voice message could cause that message to disappear. In-progress voice messages are now saved as drafts so you can review and send them when you return to the chat.",
- "description": "(Deleted 2024/06/27) Release notes for version 7.14"
- },
"icu:WhatsNew__v7.15--0": {
"messageformat": "Now you can forward contact cards that were sent from a mobile device. Share the take-out number for your favorite restaurant without taking out your phone.",
"description": "Release notes for version 7.15"
@@ -7374,5 +7370,9 @@
"icu:WhatsNew__v7.15--2": {
"messageformat": "We also updated the Sticker Creator to support the latest Emoji, so today's stickers are no longer stuck with yesterday's Unicode standard.",
"description": "Release notes for version 7.15"
+ },
+ "icu:WhatsNew__v7.16--0": {
+ "messageformat": "We fixed a bug that prevented the button to minimize a call from appearing while that call was reconnecting. Now you don't need to feel disconnected from previous chats even if the internet is feeling disconnected.",
+ "description": "Release notes for version 7.16"
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 912de838f3..e25eb5210d 100644
--- a/ts/components/WhatsNewModal.tsx
+++ b/ts/components/WhatsNewModal.tsx
@@ -42,11 +42,7 @@ export function WhatsNewModal({
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
- features: [
- ,
- ,
- ,
- ],
+ features: [],
};
if (releaseNotes.features.length === 1 && !releaseNotes.header) {