From 081c17651e18ee0f1dd9664542c7d9fc4656c295 Mon Sep 17 00:00:00 2001 From: cristhianzl Date: Thu, 2 May 2024 16:30:19 -0300 Subject: [PATCH] normalize names --- .../pages/{signUpPage => SignUpPage}/index.tsx | 0 src/frontend/src/routes.tsx | 18 ++++++++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) rename src/frontend/src/pages/{signUpPage => SignUpPage}/index.tsx (100%) diff --git a/src/frontend/src/pages/signUpPage/index.tsx b/src/frontend/src/pages/SignUpPage/index.tsx similarity index 100% rename from src/frontend/src/pages/signUpPage/index.tsx rename to src/frontend/src/pages/SignUpPage/index.tsx diff --git a/src/frontend/src/routes.tsx b/src/frontend/src/routes.tsx index cc47e1f28..26b6aee48 100644 --- a/src/frontend/src/routes.tsx +++ b/src/frontend/src/routes.tsx @@ -10,16 +10,16 @@ import ApiKeysPage from "./pages/ApiKeysPage"; import FlowPage from "./pages/FlowPage"; import HomePage from "./pages/MainPage"; import ComponentsComponent from "./pages/MainPage/components/components"; +import PlaygroundPage from "./pages/Playground"; import SettingsPage from "./pages/SettingsPage"; import GeneralPage from "./pages/SettingsPage/pages/GeneralPage"; import GlobalVariablesPage from "./pages/SettingsPage/pages/GlobalVariablesPage"; import ShortcutsPage from "./pages/SettingsPage/pages/ShortcutsPage"; +import SignUp from "./pages/SignUpPage"; import StorePage from "./pages/StorePage"; import ViewPage from "./pages/ViewPage"; import DeleteAccountPage from "./pages/deleteAccountPage"; import LoginPage from "./pages/loginPage"; -import SignUp from "./pages/signUpPage"; -import PlaygroundPage from "./pages/Playground"; const Router = () => { return ( @@ -76,10 +76,16 @@ const Router = () => { } /> - element={ - - - } /> + element= + { + + + + } + /> }