@yuuvis/client-core 2.0.8 → 2.0.10

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.
@@ -2236,7 +2236,7 @@ class UserService {
2236
2236
  }
2237
2237
  saveUserSettings(settings) {
2238
2238
  if (this.#user) {
2239
- console.log(this.#user.userSettings);
2239
+ //console.log(this.#user.userSettings);
2240
2240
  this.#user.userSettings = { ...this.#user.userSettings, ...settings };
2241
2241
  return this.backend.post(this.#DEFAULT_SETTINGS, this.#user.userSettings).pipe(tap(() => this.#userSource.next(this.#user)));
2242
2242
  }
@@ -2979,7 +2979,7 @@ class ClipboardService {
2979
2979
  async addToNavigatorClipBoard(data) {
2980
2980
  try {
2981
2981
  await navigator.clipboard.writeText(data);
2982
- console.log('Text copied to clipboard');
2982
+ //console.log('Text copied to clipboard');
2983
2983
  }
2984
2984
  catch (error) {
2985
2985
  console.error('Failed to copy text: ', error);