Created two new env variables (#2120)
* created the two env variables * modify according to comments
This commit is contained in:
@ -0,0 +1,6 @@
|
||||
import { atom } from 'recoil';
|
||||
|
||||
export const isDataModelSettingsEnabledState = atom<boolean>({
|
||||
key: 'isDataModelSettingsEnabledState',
|
||||
default: false,
|
||||
});
|
||||
@ -0,0 +1,6 @@
|
||||
import { atom } from 'recoil';
|
||||
|
||||
export const isDevelopersSettingsEnabledState = atom<boolean>({
|
||||
key: 'isDevelopersSettingsEnabledState',
|
||||
default: false,
|
||||
});
|
||||
Reference in New Issue
Block a user