chore(electron): disable onboarding (#9332)

close AF-2020
This commit is contained in:
CatsJuice
2024-12-26 11:21:15 +00:00
parent fe957e3175
commit 690a79b905

View File

@@ -1,24 +1,11 @@
import { logger } from '../logger';
import { initAndShowMainWindow } from './main-window';
import { getOnboardingWindow, getOrCreateOnboardingWindow } from './onboarding';
import { launchStage } from './stage';
/**
* Launch app depending on launch stage
*/
export async function launch() {
const stage = launchStage.value;
if (stage === 'main') {
initAndShowMainWindow().catch(e => {
logger.error('Failed to restore or create window:', e);
});
getOnboardingWindow()
.then(w => w?.destroy())
.catch(e => logger.error('Failed to destroy onboarding window:', e));
}
if (stage === 'onboarding')
getOrCreateOnboardingWindow().catch(e => {
logger.error('Failed to restore or create onboarding window:', e);
});
initAndShowMainWindow().catch(e => {
logger.error('Failed to restore or create window:', e);
});
}