monkey-front-core 0.0.361 → 0.0.362

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3637,6 +3637,13 @@ class MonkeyEcxTokenStorageService {
3637
3637
  };
3638
3638
  if (username) {
3639
3639
  data = await store.select(select({ username })).pipe(take(1)).toPromise();
3640
+ if (!data?.program) {
3641
+ const program = localStorage.getItem('program');
3642
+ data = {
3643
+ ...data,
3644
+ program
3645
+ };
3646
+ }
3640
3647
  }
3641
3648
  const config = await monkeyecxConfigService.config()
3642
3649
  .pipe(take(1)).toPromise();