fixes #586
This commit is contained in:
2023-06-26 12:29:12 +01:00
parent 7c1d5273fc
commit 379bce6f9e
9 changed files with 43 additions and 50 deletions

View File

@ -21,7 +21,6 @@ import SettingsPage, { SettingsRoutes } from "Pages/SettingsPage";
import ErrorPage from "Pages/ErrorPage";
import VerificationPage from "Pages/Verification";
import MessagesPage from "Pages/MessagesPage";
import ChatPage from "Pages/ChatPage";
import DonatePage from "Pages/DonatePage";
import HashTagsPage from "Pages/HashTagsPage";
import SearchPage from "Pages/SearchPage";
@ -123,13 +122,9 @@ export const router = createBrowserRouter([
element: <VerificationPage />,
},
{
path: "/messages",
path: "/messages/:id?",
element: <MessagesPage />,
},
{
path: "/messages/:id",
element: <ChatPage />,
},
{
path: "/donate",
element: <DonatePage />,