From 88caf4b56357bfee37c3a71feddd4c2be603ebe0 Mon Sep 17 00:00:00 2001 From: constantly-dev Date: Sat, 25 Jan 2025 12:23:00 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=81=B4=EB=9E=98=EC=8A=A4=20=EA=B0=9C?= =?UTF-8?q?=EC=84=A4=20=EC=99=84=EB=A3=8C=20=ED=8E=98=EC=9D=B4=EC=A7=80=20?= =?UTF-8?q?route=20=EC=B6=94=EA=B0=80=20(#314)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/router.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/routes/router.tsx b/src/routes/router.tsx index 5c6ddc79..b03273e3 100644 --- a/src/routes/router.tsx +++ b/src/routes/router.tsx @@ -1,6 +1,7 @@ import { lazy } from 'react'; import { createBrowserRouter } from 'react-router-dom'; import { LoginCallback } from '@/pages/auth'; +import ClassRegisterCompletion from '@/pages/instructor/ClassRegisterCompletion'; import { CheckoutPage } from '@/pages/reservation/components/TossPayments/CheckOut/CheckOut'; import { FailPage } from '@/pages/reservation/components/TossPayments/Fail/Fail'; import { SuccessPage } from '@/pages/reservation/components/TossPayments/Success/Success'; @@ -66,6 +67,10 @@ export const router = createBrowserRouter([ path: ROUTES_CONFIG.classRegister.path, element: , }, + { + path: ROUTES_CONFIG.classRegisterCompletion.path, + element: , + }, { path: ROUTES_CONFIG.instructorRegister.path, element: ,