From 1e1b42b51e56c471aefb1dee6298bdfb2b8fb58f Mon Sep 17 00:00:00 2001 From: DevArcane Date: Fri, 19 Jul 2024 14:48:59 +0500 Subject: [PATCH] change url to a working url --- src/components/Navbar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 528591e..16f74b5 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -14,7 +14,8 @@ export const Navbar = () => { const { isDarkMode, toggle: toggleDarkMode } = useDarkMode(); useEffect(() => { - fetch("https://xpvitaldata.herokuapp.com/last-commit") + // fetch("https://xpvitaldata.herokuapp.com/last-commit") + fetch("https://case-studies.xp.network/last-commit") .then((res) => res.json()) .then((latestCommit) => { SetLatestCommit(Date.parse(latestCommit));