@@ -63,27 +60,6 @@ export default function Home() {
>
- {/* Demo on how to use next-auth hooks. */}
- {loading}
- {!session && (
- <>
- Not signed in
-
-
- >
- )}
- {session && (
- <>
- Signed in as {session.user.email}
-
- >
- )}
diff --git a/services/rox/RoxContainer.js b/services/rox/RoxContainer.js
index 39e2b6f..680ca09 100644
--- a/services/rox/RoxContainer.js
+++ b/services/rox/RoxContainer.js
@@ -16,6 +16,7 @@ if (!Rox.containerCache) {
Rox.containerCache = {
suggestedDonationValues: new FakeFlag("25|75|100"),
shouldShowRegistrationForm: new FakeFlag(false),
+ dashboardEnabled: new FakeFlag(false),
};
} else {
Rox.containerCache = {
@@ -25,6 +26,7 @@ if (!Rox.containerCache) {
"150|300|500",
]),
shouldShowRegistrationForm: new Flag(),
+ dashboardEnabled: new Flag(),
};
}
}