🚀 Auto-deploy: melhoria no snap e medição AR em 24/05/2026 01:33:36

This commit is contained in:
2026-05-24 01:33:36 +00:00
parent b7cd422068
commit c839653a97
5 changed files with 279 additions and 403 deletions
-2
View File
@@ -5,7 +5,6 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { BrowserRouter, Routes, Route } from "react-router-dom";
import Index from "./pages/Index";
import Viewer from "./pages/Viewer";
import XRSession from "./pages/XRSession";
import Watch from "./pages/Watch";
import NotFound from "./pages/NotFound";
import "@/lib/remoteLogger";
@@ -21,7 +20,6 @@ const App = () => (
<Routes>
<Route path="/" element={<Index />} />
<Route path="/viewer" element={<Viewer />} />
<Route path="/xr" element={<XRSession />} />
<Route path="/watch/:code" element={<Watch />} />
<Route path="*" element={<NotFound />} />
</Routes>