diff --git a/.all-contributorsrc b/.all-contributorsrc
index a7b41bd699e..37c5dddeb93 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -1440,6 +1440,15 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "22PoojaGaur",
+ "name": "Pooja Gaur",
+ "avatar_url": "https://avatars2.githubusercontent.com/u/43316760?v=4",
+ "profile": "https://github.com/22PoojaGaur",
+ "contributions": [
+ "code"
+ ]
}
],
"contributorsPerLine": 7,
diff --git a/README.md b/README.md
index 096bf5ad22f..18afa8583dd 100644
--- a/README.md
+++ b/README.md
@@ -240,12 +240,12 @@ Thanks goes to these wonderful people
 milap1296 💻 |
 yevhen orlov 💻 |
 Nilesh Patel 💻 |
+  Pooja Gaur 💻 |
-
## Backers
diff --git a/packages/app/src/app/pages/common/Modals/PreferencesModal/Experiments/index.tsx b/packages/app/src/app/pages/common/Modals/PreferencesModal/Experiments/index.tsx
index 0d8ba20d754..be7ac85f8c1 100644
--- a/packages/app/src/app/pages/common/Modals/PreferencesModal/Experiments/index.tsx
+++ b/packages/app/src/app/pages/common/Modals/PreferencesModal/Experiments/index.tsx
@@ -7,57 +7,17 @@ import {
PreferenceContainer,
} from '../elements';
-// const windowWithOvermind: {
-// useOvermind?: (val?: boolean) => 'true' | null;
-// } = window as any;
+export const Experiments: React.FunctionComponent = () => (
+
+
Experiments
-export function Experiments() {
- // const bindValue = name => ({
- // value: store.preferences.settings[name],
- // setValue: value =>
- // signals.preferences.settingChanged({
- // name,
- // value,
- // }),
- // });
-
- // const [usingOvermind, setUsingOvermind] = React.useState(
- // typeof windowWithOvermind.useOvermind !== 'undefined' &&
- // windowWithOvermind.useOvermind() === 'true'
- // );
-
- return (
-
-
Experiments
-
-
-
-
- There are no experiments running at the moment. Stay tuned for new
- experiments!
-
- {/*
- {
- windowWithOvermind.useOvermind(val);
- setUsingOvermind(val);
- track('Overmind Enabled', {
- enabled: val,
- });
- }}
- />
-
- Use Overmind (an evolution of our current state management) as the
- state management
-
- */}
-
-
-
- );
-}
-
-// export default inject('store', 'signals')(observer(Experiments));
+
+
+
+ There are no experiments running at the moment. Stay tuned for new
+ experiments!
+
+
+
+
+);