Skip to content

Commit

Permalink
change url to a working url
Browse files Browse the repository at this point in the history
  • Loading branch information
DevArcane committed Jul 19, 2024
1 parent 6a33ff8 commit 1e1b42b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 1e1b42b

Please sign in to comment.