From 8770726873909c47e3c37c5cabf71a4f611ebb79 Mon Sep 17 00:00:00 2001 From: MathieuSevignyLavallee <89943988+MathieuSevignyLavallee@users.noreply.github.com> Date: Tue, 15 Oct 2024 20:17:46 -0400 Subject: [PATCH] typo --- client/src/App.tsx | 8 ++++---- .../pages/AuthManager/providers/OAuth-Oidc/ButtonAuth.tsx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/client/src/App.tsx b/client/src/App.tsx index 1c0df7a..fd0ee1a 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -7,8 +7,8 @@ import Home from './pages/Home/Home'; // Pages espace enseignant import Dashboard from './pages/Teacher/Dashboard/Dashboard'; import Share from './pages/Teacher/Share/Share'; -import Register from './pages/AuthSelection/providers/SimpleLogin/Register'; -import ResetPassword from './pages/AuthSelection/providers/SimpleLogin/ResetPassword'; +import Register from './pages/AuthManager/providers/SimpleLogin/Register'; +import ResetPassword from './pages/AuthManager/providers/SimpleLogin/ResetPassword'; import ManageRoom from './pages/Teacher/ManageRoom/ManageRoom'; import QuizForm from './pages/Teacher/EditorQuiz/EditorQuiz'; @@ -16,14 +16,14 @@ import QuizForm from './pages/Teacher/EditorQuiz/EditorQuiz'; import JoinRoom from './pages/Student/JoinRoom/JoinRoom'; // Pages authentification selection -import AuthDrawer from './pages/AuthSelection/AuthDrawer'; +import AuthDrawer from './pages/AuthManager/AuthDrawer'; // Header/Footer import import Header from './components/Header/Header'; import Footer from './components/Footer/Footer'; import ApiService from './services/ApiService'; -import OAuthCallback from './pages/AuthSelection/callback/AuthCallback'; +import OAuthCallback from './pages/AuthManager/callback/AuthCallback'; const App: React.FC = () => { const [isAuthenticated, setIsAuthenticated] = useState(ApiService.isLoggedIn()); // Initial check diff --git a/client/src/pages/AuthManager/providers/OAuth-Oidc/ButtonAuth.tsx b/client/src/pages/AuthManager/providers/OAuth-Oidc/ButtonAuth.tsx index a264f6c..b561217 100644 --- a/client/src/pages/AuthManager/providers/OAuth-Oidc/ButtonAuth.tsx +++ b/client/src/pages/AuthManager/providers/OAuth-Oidc/ButtonAuth.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { ENV_VARIABLES } from '../../../../constants'; -import './css/ButtonAuth.css'; +import '../css/buttonAuth.css'; interface ButtonAuthContainerProps { providerName: string;