feat: fix logout button, inactivity tracker, and concurrent session termination
All checks were successful
Staging Build / build (push) Successful in 2m16s

This commit is contained in:
DanielS
2026-06-24 00:15:59 +02:00
parent 9878cdb2a2
commit 62e3c7804a
6 changed files with 173 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Geist } from "next/font/google";
import { ThemeProvider } from "next-themes";
import { InactivityTracker } from "@/components/inactivity-tracker";
import "./globals.css";
const defaultUrl = process.env.VERCEL_URL
@@ -33,6 +34,7 @@ export default function RootLayout({
enableSystem
disableTransitionOnChange
>
<InactivityTracker />
{children}
</ThemeProvider>
</body>