Merge pull request #587 from silentrald/feat/543

[feat-543] added notification when logging out
This commit is contained in:
MathieuG-P
2024-09-22 15:42:27 +02:00
committed by GitHub
9 changed files with 15 additions and 0 deletions
@@ -136,7 +136,14 @@ export function SettingsPage() {
}
const clearDownloadersSession = () => {
if (!hasDownloaderSession) {
return;
}
steamDownloader.deleteSteamSession();
notificationService.notifyInfo({
title: "pages.settings.steam-and-oculus.logout-success",
});
loadDownloadersSession();
}