diff --git a/package-lock.json b/package-lock.json
index b50742b..49105d6 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "meets",
- "version": "1.0.2",
+ "version": "1.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
diff --git a/package.json b/package.json
index 258603b..6e8ac11 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "meets",
"private": true,
- "version": "1.0.2",
+ "version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
diff --git a/src/App.tsx b/src/App.tsx
index 68fe691..5c9c92f 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,4 +1,3 @@
-import { lazy, Suspense } from "react";
import { Routes, Route } from "react-router-dom";
import ErrorBoundary from "./components/ErrorBoundary/ErrorBoundary";
import useGeneralContext from "./hooks/useContextHooks/useGeneralContext";
@@ -9,10 +8,6 @@ import Usersearch from "./components/Userlist/Usersearch";
import Auser from "./components/AnotherUser/Auser";
import LikedPosts from "./components/LikedPosts/LikedPosts";
import Chat from "./components/Chat/Chat";
-import Loading from "./components/LoadingStates/LoadingPosts";
-
-const LazyLikedPosts = lazy(() => import("./components/LikedPosts/LikedPosts"));
-const LazyChat = lazy(() => import("./components/Chat/Chat"));
export const cookies = new Cookies();
@@ -38,22 +33,8 @@ const App = () => {
} />
} />
} />
- }>
-
-
- }
- />
- Loading chat...}>
-
-
- }
- />
+ } />
+ } />
);