Skip to content

Commit

Permalink
ci: 배포 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
gogumalatte committed Nov 14, 2024
1 parent 56590df commit 1ca9f88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/book/BookPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const BookPage = () => {
>
<IconButton
icon={<SearchIcon boxSize="120px" />}
aria-label="보호종 더 알아보기"
aria-label="보호종 더 알아보러 가기"
onClick={() =>
window.open(
"https://www.nie.re.kr/nie/pgm/edSearch/main.do?menuNo=200133",
Expand Down
4 changes: 2 additions & 2 deletions src/routes/Routes.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createBrowserRouter, RouterProvider } from "react-router-dom";
import MainPage from "../pages/MainPage/MainPage"; // 메인 페이지 컴포넌트 가져오기
import StartPage from "../pages/Start/StartPage";
import BookPage from "../pages/Book/BookPage"; // 도감 컴포넌트 가져오기
import BookPage from "../pages/Book/BookPage";
import LoadingPage from "../pages/LoadingPage/LoadingPage"; // 로딩 페이지 컴포넌트 가져오기/ 메인 페이지 컴포넌트 가져오기
import AnalysisPage from "../pages/Analysis/AnalysisPage";
import NotFoundPage from "../pages/NotFound/NotFoundPage";
Expand All @@ -14,7 +14,7 @@ const router = createBrowserRouter(
path: RouterPath.root,
element: <StartPage />,
},
{
{
path: RouterPath.main,
element: <MainPage />,
},
Expand Down

0 comments on commit 1ca9f88

Please sign in to comment.