hopefully this solves random hanging

This commit is contained in:
2026-01-07 20:53:21 -05:00
parent 547bc6c452
commit ca28237d13
6 changed files with 334 additions and 13 deletions

View File

@@ -19,7 +19,7 @@ import { createWindowWidth, isMobile } from "~/lib/resize-utils";
import { MOBILE_CONFIG } from "./config";
import CustomScrollbar from "./components/CustomScrollbar";
import { initPerformanceTracking } from "~/lib/performance-tracking";
import { tokenRefreshManager } from "~/lib/token-refresh";
import { startDeploymentMonitoring } from "~/lib/deployment-detection";
function AppLayout(props: { children: any }) {
const {
@@ -35,6 +35,9 @@ function AppLayout(props: { children: any }) {
// Initialize performance tracking
initPerformanceTracking();
// Start monitoring for new deployments
startDeploymentMonitoring();
const windowWidth = createWindowWidth();
createEffect(() => {