Set firstStart to true on mobile

This commit is contained in:
Silvano Cerza 2025-01-27 11:43:08 +01:00
parent 03a3bde3bb
commit 6888899e17

View file

@ -21,6 +21,8 @@ export default class GitHubSyncPlugin extends Plugin {
async onUserEnable() { async onUserEnable() {
if (Platform.isMobile) { if (Platform.isMobile) {
// TODO: Implement onboarding for mobile // TODO: Implement onboarding for mobile
this.settings.firstStart = false;
this.saveSettings();
return; return;
} }
if (this.settings.firstStart) { if (this.settings.firstStart) {