We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 538fdcc commit 5eb01c2Copy full SHA for 5eb01c2
packages/compass-preferences-model/src/compass-web-preferences-access.ts
@@ -21,6 +21,11 @@ export class CompassWebPreferencesAccess implements PreferencesAccess {
21
'optInDataExplorerGenAIFeatures' in _attributes
22
) {
23
return Promise.resolve(this._preferences.savePreferences(_attributes));
24
+ } else if (
25
+ Object.keys(_attributes).length === 1 &&
26
+ 'cloudFeatureRolloutAccess' in _attributes
27
+ ) {
28
+ return Promise.resolve(this._preferences.savePreferences(_attributes));
29
}
30
return Promise.resolve(this._preferences.getPreferences());
31
0 commit comments