Change to IPv4

This commit is contained in:
2024-01-06 15:48:25 +01:00
parent 0f74e7f7e8
commit dd8bd1e094

View File

@ -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<string, Player[]>();