From c4d6367a178b2df35d628e4060028fd3aa2eb93d Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 28 May 2020 17:30:43 +0100 Subject: [PATCH] Swap priorities of Desktop Notifications and Update toasts Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/toasts/DesktopNotificationsToast.ts | 2 +- src/toasts/UpdateToast.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/toasts/DesktopNotificationsToast.ts b/src/toasts/DesktopNotificationsToast.ts index 02f0730759..413e82e20b 100644 --- a/src/toasts/DesktopNotificationsToast.ts +++ b/src/toasts/DesktopNotificationsToast.ts @@ -41,7 +41,7 @@ export const showToast = () => { onReject, }, component: GenericToast, - priority: 20, + priority: 30, }); }; diff --git a/src/toasts/UpdateToast.tsx b/src/toasts/UpdateToast.tsx index 55c128e86a..3d4b55a4ff 100644 --- a/src/toasts/UpdateToast.tsx +++ b/src/toasts/UpdateToast.tsx @@ -81,7 +81,7 @@ export const showToast = (version: string, newVersion: string, releaseNotes?: st onAccept, }, component: GenericToast, - priority: 30, + priority: 20, }); };