diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index dad048e1e..40f5decee 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7527,5 +7527,9 @@
"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": "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": "Release notes for version 7.25"
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 5c114e245..1b92bb60e 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) {