added signup callback page that runs an api call to finish signup

This commit is contained in:
Carter 2025-07-03 13:41:09 -06:00
parent e654aa002b
commit 24d27121d1
5 changed files with 142 additions and 21 deletions

View file

@ -9,6 +9,7 @@ import { getWhitelabel } from "services/whiteLabel";
import Ventilation from "pages/VentEditor";
import { useGlobalState } from "providers";
import DeviceSupport from "pages/DeviceSupport";
import SignupCallback from "pages/SignupCallback";
const DeviceHistory = lazy(() => import("pages/DeviceHistory"));
const DevicePage = lazy(() => import("pages/Device"));
@ -302,6 +303,8 @@ export default function Router() {
{/* Redirects */}
<Route path="/callback" element={<Navigate to="/" />} />
{/* <Route path="/signupCallback" element={<Navigate to="/" />} /> */}
<Route path="/signupCallback" element={<SignupCallback />} />
{/* <Route path="/login" element={<Login />} /> */}
{/* <Route path="/team/:teamID" element={<Navigate to="/teams/:teamID" />} /> */}
{/* <Route path="/device/:deviceID" element={<Navigate to="/devices/:devicesID" />} /> */}