Skip to content

Commit

Permalink
[bug]: chat-list
Browse files Browse the repository at this point in the history
  • Loading branch information
VictoryJu committed Aug 29, 2024
1 parent e88c4c0 commit 37f3ca0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions revision.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"revision": "560d9",
"revision": "e88c4",
"branch": "main",
"lastCommitDate": "2024-08-28T19:56:37+09:00"
"lastCommitDate": "2024-08-30T00:47:09+09:00"
}
6 changes: 3 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ function App() {

window.handleIosWebviewToken = handleIosWebviewToken;

useEffect(() => {
webviewInit();
}, []);
// useEffect(() => {
// webviewInit();
// }, []);

return <RootRouter />;
}
Expand Down
4 changes: 2 additions & 2 deletions src/router/RootRouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import RootLayout from '@/components/Layout/RootLayout/RootLayout';
import DetailReservation from '@/pages/Reservation/Detail/DetailReservation';
import ReservationIndexPage from '@/pages/Reservation/Index/Index';
import ChatRoomPage from '@/pages/Chat/ChatRoom/ChatRoom';
import CharRoomsPage from '@/pages/Chat/ChatRooms/ChatRooms';
import ChatRoomsPage from '@/pages/Chat/ChatRooms/ChatRooms';
import PaymentPage from '@/pages/Payment/Payment/Payment';

import {
Expand All @@ -19,7 +19,7 @@ export const RootRouter = () => {
const router = createBrowserRouter(
createRoutesFromElements(
<Route path="/" element={<RootLayout />}>
<Route path="chat-list" element={<RootLayout />} />
<Route path="chat-list" element={<ChatRoomsPage />} />
<Route path="reservation" element={<ReservationIndexPage />} />
<Route path="chat-list/:chatRoomId" element={<ChatRoomPage />} />
<Route
Expand Down

0 comments on commit 37f3ca0

Please sign in to comment.