From 92e91a0606dad9d1925aac883f3eda3746d99625 Mon Sep 17 00:00:00 2001 From: Prospector <6166773+Prospector@users.noreply.github.com> Date: Sat, 4 Oct 2025 10:22:32 -0700 Subject: [PATCH] Remove successful update notif, is unnecessary and a bit broken (#4487) --- apps/app-frontend/src/App.vue | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/apps/app-frontend/src/App.vue b/apps/app-frontend/src/App.vue index 55029375..4f959793 100644 --- a/apps/app-frontend/src/App.vue +++ b/apps/app-frontend/src/App.vue @@ -279,16 +279,6 @@ async function setupApp() { const settings = await getSettings() settings.pending_update_toast_for_version = null await setSettings(settings) - - const version = await getVersion() - if (pending_update_toast_for_version === version) { - addNotification({ - type: 'success', - title: formatMessage(messages.updateInstalledToastTitle, { version }), - text: formatMessage(messages.updateInstalledToastText), - clickAction: () => openUrl('https://modrinth.com/news/changelog?filter=app'), - }) - } } if (osType === 'windows') {