monkey-front-core 0.0.312 → 0.0.313

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.
@@ -3674,12 +3674,15 @@ class MonkeyEcxTokenStorageService {
3674
3674
  const config = await monkeyecxConfigService.config()
3675
3675
  .pipe(take(1)).toPromise();
3676
3676
  console.log('7777');
3677
+ const handledData = {
3678
+ ...data
3679
+ };
3677
3680
  if (data && !data?.program && config?.program) {
3678
- data.program = config?.program?.token;
3681
+ handledData.program = config?.program?.token;
3679
3682
  }
3680
- console.log('data');
3681
- console.log(data);
3682
- return data;
3683
+ console.log('handledData');
3684
+ console.log(handledData);
3685
+ return handledData;
3683
3686
  }
3684
3687
  catch (e) {
3685
3688
  console.log('=======');