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.
2 parents fc64be9 + b5e7e19 commit c4db5d3Copy full SHA for c4db5d3
packages/remote-feature-flag-controller/src/remote-feature-flag-controller.ts
@@ -28,8 +28,8 @@ export const DEFAULT_CACHE_DURATION = 24 * 60 * 60 * 1000; // 1 day
28
29
export type RemoteFeatureFlagControllerState = {
30
remoteFeatureFlags: FeatureFlags;
31
- localOverrides: FeatureFlags;
32
- rawRemoteFeatureFlags: FeatureFlags;
+ localOverrides?: FeatureFlags;
+ rawRemoteFeatureFlags?: FeatureFlags;
33
cacheTimestamp: number;
34
};
35
0 commit comments