We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a70fc7e commit 3f08f30Copy full SHA for 3f08f30
1 file changed
apps/roam/src/components/settings/utils/accessors.ts
@@ -285,6 +285,10 @@ export const getFeatureFlag = (key: keyof FeatureFlags): boolean => {
285
return flags[key];
286
};
287
288
+export const isDualReadEnabled = (): boolean => {
289
+ return getFeatureFlag("Enable dual read");
290
+};
291
+
292
export const setFeatureFlag = (
293
key: keyof FeatureFlags,
294
value: boolean,
0 commit comments