diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 1364128090..b07b9833d7 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -8271,5 +8271,9 @@
"icu:WhatsNew__v7.48--0": {
"messageformat": "We added a convenient shortcut to quickly lower your hand after you start speaking during a Signal group call. It's hands down our favorite feature in this release.",
"description": "Release notes for version 7.48"
+ },
+ "icu:WhatsNew__v7.49--0": {
+ "messageformat": "If you link a new Desktop on Signal Android and choose to transfer your message history, now you can also selectively transfer old attachments from your primary device too. Bring the past into the present by scrolling back in time and clicking on the download icon. As always, the transfer process is end-to-end encrypted and secure.",
+ "description": "Release notes for version 7.49"
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 7a5a1dd1d6..0d59e318b3 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) {