secured backend -> made backend internal accessable

This commit is contained in:
2026-01-16 17:07:56 +01:00
parent 5546401aa4
commit 9963731b10
4 changed files with 8 additions and 13 deletions

View File

@@ -16,7 +16,6 @@ import { Box, Flex } from "@chakra-ui/react";
import { Footer } from "./components/footer/Footer";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { API_BASE } from "@/config/api.config";
import { NotFoundPage } from "./pages/NotFoundPage";
const queryClient = new QueryClient();
@@ -84,7 +83,6 @@ function App() {
</Route>
<Route path="/login" element={<LoginPage />} />
<Route path="/not-found" element={<NotFoundPage />} />
</Routes>
</BrowserRouter>
</UserContext.Provider>