update map with nodes dynamic

This commit is contained in:
2025-11-19 10:24:15 +02:00
parent 8dfc46cabe
commit cbbc87cc29
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ interface RawNode {
function DynamicMapContainer() {
const [loading, setLoading] = useState(true);
const [nodes, setNodes] = useState<GeoNode[]>([]);
const API_URL = "https://gridproxy.grid.tf/nodes?healthy=true";
const API_URL = "https://gridproxy.grid.tf/nodes?healthy=true&size=99999";
useEffect(() => {
async function fetchNodeData() {