1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

Swap priorities of Desktop Notifications and Update toasts

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2020-05-28 17:30:43 +01:00
parent 71108fcf39
commit c4d6367a17
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ export const showToast = () => {
onReject,
},
component: GenericToast,
priority: 20,
priority: 30,
});
};

View File

@@ -81,7 +81,7 @@ export const showToast = (version: string, newVersion: string, releaseNotes?: st
onAccept,
},
component: GenericToast,
priority: 30,
priority: 20,
});
};