From dd8bd1e0947c5c38652e31875428d093aacd6f1a Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Sat, 6 Jan 2024 15:48:25 +0100 Subject: [PATCH] Change to IPv4 --- src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 0ebf9f7..44bbcfc 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -10,7 +10,7 @@ import PlayerCount from "@components/PlayerCount.svelte"; import "../../public/fonts/barlow-condensed/barlow-condensed.css"; import type {Player} from "@components/types/data"; -const teamMember = await fetch("http://localhost:1337/data/team").then(value => value.json()); +const teamMember = await fetch("http://127.0.0.1:1337/data/team").then(value => value.json()); function groupByGroup(array) { const groups = new Map();