diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 5d6020a959..f5464816cd 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7202,5 +7202,9 @@
"messageformat": "Small tweaks, bug fixes, and performance enhancements. Thanks for using Signal!",
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
+ },
+ "icu:WhatsNew__v7.11--0": {
+ "messageformat": "We fixed a rendering bug that caused the contacts icon to smash itself right next to the contact's name while viewing the list of participants in a group call. You're probably really close to your contacts, but sometimes you (and the Signal Desktop user interface) both need a little space.",
+ "description": "Release notes for version 7.11"
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 2a65f82d6a..eb772a72ac 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) {