Skip to content

Commit

Permalink
Merge pull request #308 from hhbb0081/test
Browse files Browse the repository at this point in the history
Fix: 축제 부스 페이지 Auth 적용
  • Loading branch information
hhbb0081 authored May 13, 2024
2 parents 643f7f7 + cda6169 commit e172a68
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ function App() {
const NewPaymentPage = Auth(PaymentPage, true, 2);
const NewPaymentLoadingPage = Auth(PaymentLoadingPage, true, 2);
const NewPaymentFailPage = Auth(PaymentFailPage, true, 2);
const NewFestivalBoothSearch = Auth(FestivalBoothSearch, true, 2);
// const NewPackagingStatusPage = Auth(PackagingStatusPage, true);

// const minute = 1000 * 60 * 60 * 24; // 24시간
Expand Down Expand Up @@ -166,7 +167,7 @@ function App() {
<Route path="/payment/fail" element={<NewPaymentFailPage />} />

{/* 축제 부스 검색 페이지 */}
<Route path="/booth" element={<FestivalBoothSearch />} />
<Route path="/booth" element={<NewFestivalBoothSearch />} />
</Routes>
</Suspense>
</RecoilRoot>
Expand Down

0 comments on commit e172a68

Please sign in to comment.