From a0c9df4bd414fe56a8d98ae7601ea7103dd78e95 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:35:17 -0600 Subject: [PATCH] refactor: add 7 minutes interval --- apps/dokploy/components/layouts/navbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/components/layouts/navbar.tsx b/apps/dokploy/components/layouts/navbar.tsx index 59d8d8c7b..0e52d7019 100644 --- a/apps/dokploy/components/layouts/navbar.tsx +++ b/apps/dokploy/components/layouts/navbar.tsx @@ -18,7 +18,7 @@ import { Logo } from "../shared/logo"; import { Avatar, AvatarFallback, AvatarImage } from "../ui/avatar"; import { buttonVariants } from "../ui/button"; -const AUTO_CHECK_UPDATES_INTERVAL_MINUTES = 5; +const AUTO_CHECK_UPDATES_INTERVAL_MINUTES = 7; export const Navbar = () => { const [isUpdateAvailable, setIsUpdateAvailable] = useState(false);