From 8d2d45ef382acb523bd5009ec2ffc14b78beefed Mon Sep 17 00:00:00 2001 From: RemixDev Date: Wed, 9 Feb 2022 13:02:55 +0100 Subject: [PATCH] Fixed update available toast not disappearing --- src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.js b/src/app.js index 43c94c2..c2fc427 100644 --- a/src/app.js +++ b/src/app.js @@ -97,7 +97,7 @@ async function startApp() { const updates = await fetchData('checkForUpdates') store.dispatch('setUpdateInfo', updates).catch(console.error) if (updates.updateAvailable) { - toast(i18n.t('toasts.updateAvailable'), 'browser_updated', false, 'updates-toast') + toast(i18n.t('toasts.updateAvailable'), 'browser_updated', true, 'updates-toast') } else { toast(i18n.t('toasts.noUpdateAvailable'), 'done', true, 'updates-toast') }