diff --git a/_locales/en/messages.json b/_locales/en/messages.json index f88b91f9c2..91aff1615d 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -9228,5 +9228,9 @@ "icu:WhatsNew__v7.67--0": { "messageformat": "We fixed a bug that prevented donation badges from appearing correctly for some users. Signal is a 501c3 nonprofit, and we appreciate your support!", "description": "(Deleted 2025/08/20) Release notes for version 7.67" + }, + "icu:WhatsNew__v7.70--0": { + "messageformat": "We fixed a bug on Microsoft Windows that made the Signal Desktop title bar orange instead of blue. If you've grown to love the citrus-themed color scheme over the past few days and this bugfix makes you feel blue, you can adjust your system accent color in your Windows settings.", + "description": "Release notes for version 7.70" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index 2a65f82d6a..411d4141f3 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) {