diff --git a/packages/dashboard-v2/src/contexts/portal-settings/PortalSettingsContext.js b/packages/dashboard-v2/src/contexts/portal-settings/PortalSettingsContext.js index 07e7844c..4c0cf185 100644 --- a/packages/dashboard-v2/src/contexts/portal-settings/PortalSettingsContext.js +++ b/packages/dashboard-v2/src/contexts/portal-settings/PortalSettingsContext.js @@ -2,8 +2,8 @@ import { createContext } from "react"; export const defaultSettings = { areAccountsEnabled: false, - isAuthenticationRequired: true, - isSubscriptionRequired: true, + isAuthenticationRequired: false, + isSubscriptionRequired: false, }; export const PortalSettingsContext = createContext(defaultSettings); diff --git a/packages/dashboard-v2/src/pages/auth/signup.js b/packages/dashboard-v2/src/pages/auth/signup.js index 174a17fd..036d5368 100644 --- a/packages/dashboard-v2/src/pages/auth/signup.js +++ b/packages/dashboard-v2/src/pages/auth/signup.js @@ -1,5 +1,6 @@ import { useEffect, useState } from "react"; import { navigate } from "gatsby"; +import bytes from "pretty-bytes"; import AuthLayout from "../../layouts/AuthLayout"; @@ -7,13 +8,21 @@ import { Alert } from "../../components/Alert"; import HighlightedLink from "../../components/HighlightedLink"; import { SignUpForm } from "../../components/forms/SignUpForm"; import { usePortalSettings } from "../../contexts/portal-settings"; +import { PlansProvider, usePlans } from "../../contexts/plans"; -const FreePortalHeader = () => ( -
Includes 100 GB storage at basic speed
-Includes {freeStorage} storage at basic speed
} +Please check your inbox and confirm your email address.
+You will be redirected to your dashboard shortly.
+Something went wrong, please try again later.
+ )} + > + )} + +
+ Already have an account?
Please check your inbox and confirm your email address.
-You will be redirected to your dashboard shortly.
-Something went wrong, please try again later.
- )} - > - )} - -
- Already have an account?