From 29433ccf3c313cbd7c38cfca3f40c04ea148302d Mon Sep 17 00:00:00 2001 From: Rinat Tabaev Date: Fri, 29 Sep 2023 09:44:13 +0300 Subject: [PATCH] updates version --- package-lock.json | 2 +- package.json | 2 +- src/App.tsx | 23 ++--------------------- 3 files changed, 4 insertions(+), 23 deletions(-) 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...}> - - - } - /> + } /> + } /> );