fix: Ein Abgleich darf natürlich nicht die Seiten blockieren.

This commit is contained in:
ISA
2025-08-20 16:36:05 +02:00
parent 6e98a98670
commit fb36561cb9
13 changed files with 20 additions and 18 deletions

View File

@@ -13,7 +13,6 @@ import Footer from "@/components/footer/Footer";
import { store } from "@/redux/store";
import Script from "next/script";
import DeviceEventsBridge from "@/components/common/DeviceEventsBridge";
import GlobalActivityOverlay from "@/components/common/GlobalActivityOverlay";
import { usePathname } from "next/navigation";
// Thunks importieren
@@ -162,10 +161,6 @@ function AppContent({
)}
<Component {...pageProps} />
<ToastContainer position="top-right" autoClose={3000} />
{/* Hide global overlay on kabelueberwachung page so only per-slot overlays show */}
{pathnameHook?.includes("kabelueberwachung") ? null : (
<GlobalActivityOverlay />
)}
</main>
</div>
<Footer />