From 86865ea19c8a3b3ac6951d695cf41b22748b3252 Mon Sep 17 00:00:00 2001 From: Tuditi Date: Wed, 18 Oct 2023 11:59:04 +0200 Subject: [PATCH] chore: revert reset active profile --- packages/desktop/views/login/views/SelectProfileView.svelte | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/desktop/views/login/views/SelectProfileView.svelte b/packages/desktop/views/login/views/SelectProfileView.svelte index 202032015c..d90ccd32dc 100644 --- a/packages/desktop/views/login/views/SelectProfileView.svelte +++ b/packages/desktop/views/login/views/SelectProfileView.svelte @@ -11,7 +11,7 @@ import { localize } from '@core/i18n' import { IPersistedProfile, ProfileType, removeProfileFolder } from '@core/profile' import { destroyProfileManager } from '@core/profile-manager/actions' - import { loadPersistedProfileIntoActiveProfile, resetActiveProfile } from '@core/profile/actions' + import { loadPersistedProfileIntoActiveProfile } from '@core/profile/actions' import { profiles } from '@core/profile/stores' import { loginRouter, routerManager } from '@core/router' import { PopupId, openPopup } from '@desktop/auxiliary/popup' @@ -56,8 +56,6 @@ } $onboardingProfile = undefined } - // Ensure there is no active profile set from previous app activity - resetActiveProfile() })