Skip to content

Commit 9f05c2c

Browse files
authored
Merge pull request #61 from ArtNeplatform/bug/#60
Hotfix: 로그인 리다이렉트 관련 로직 수정
2 parents 625859a + ed06ca9 commit 9f05c2c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/router.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { Main } from '@/pages/main';
1919
import { ArtWork } from '@/pages/artwork';
2020
import { ArtworkDetail } from '@/pages/artwork-detail';
2121
import { AuctionDetail } from './pages/auction-detail';
22+
import { LoginRedirect } from './pages/login-redirect';
2223
type TRoutes = {
2324
path: string;
2425
element: JSX.Element;
@@ -44,6 +45,7 @@ export const routes: TRoutes[] = [
4445

4546
{ path: '/test', element: <Test />, isTabBar: true },
4647
{ path: '/login', element: <Login />, isTabBar: true },
48+
{ path: '/login/redirect', element: <LoginRedirect />, isTabBar: true },
4749
{ path: '/register', element: <Register />, isTabBar: true },
4850

4951
{

0 commit comments

Comments
 (0)