diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 0b6f15b4569..4df7f1d8115 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7560,24 +7560,12 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
- "icu:WhatsNew__v7.23--0": {
- "messageformat": "Chats now open faster than ever thanks to another round of performance improvements, so you can click on your cliques and see what they're saying real quick.",
- "description": "(Deleted 2024/09/04) Release notes for version 7.23"
- },
- "icu:WhatsNew__v7.23--1": {
- "messageformat": "We also fixed a handful of bugs, including one that sometimes caused \"Unknown contact started a video call\" to appear in the chat list summary after you started the call. Even if you're still on a journey of self-discovery, you are never completely unknown to yourself.",
- "description": "(Deleted 2024/09/04) Release notes for version 7.23"
- },
- "icu:WhatsNew__v7.24--0": {
- "messageformat": "This update fixes a bug where viewing a missed call on one device wouldn't automatically clear the indicator for that missed call on your other devices, which was a missed opportunity for your missed call list to better coexist.",
- "description": "(Deleted 2024/09/12) Release notes for version 7.24"
- },
- "icu:WhatsNew__v7.25--0": {
- "messageformat": "Take a trip down memory lane with the new and improved \"All Media\" view. Now when you click on a chat header and select \"See all\" in the shared media section, older photos and videos will automatically appear as you scroll instead of being limited to the most recent entries.",
- "description": "(Deleted 2024/09/19) Release notes for version 7.25"
- },
"icu:WhatsNew__v7.26--0": {
"messageformat": "Sometimes leaving something behind is the best way to discover that you want to find it again, so we fixed a bug that made it difficult to search for groups that you're no longer a part of anymore but that still remain in your conversation list (and quite possibly in your heart).",
"description": "Release notes for version 7.26"
+ },
+ "icu:WhatsNew__v7.27--0": {
+ "messageformat": "Now you can remove quoted replies from edited messages. It's perfect for those moments when you realize that your response was so good that it doesn't actually need to stand on another message's shoulders, or when you accidentally reply to the wrong message with \"I love you too.\"",
+ "description": "Release notes for version 7.27"
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 6fd7e1319ae..61b62a6139e 100644
--- a/ts/components/WhatsNewModal.tsx
+++ b/ts/components/WhatsNewModal.tsx
@@ -42,7 +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) {