Skip to content

Commit

Permalink
Change provider map topojson url + bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Redm4x committed Oct 3, 2023
1 parent ae82a18 commit c3a0df6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions deploy-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deploy-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudmos-app",
"version": "1.5.4",
"version": "1.5.5",
"description": "Web UI to deploy on the Akash Network and view statistic about network usage.",
"author": "Cloudmos",
"private": true,
Expand Down
8 changes: 4 additions & 4 deletions deploy-web/src/components/providers/ProviderMap.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { makeStyles } from "tss-react/mui";
import { ApiProviderList } from "@src/types/provider";
import { ComposableMap, Geographies, Geography, Marker, Point, Sphere, ZoomableGroup } from "react-simple-maps";
import { useMemo, useState } from "react";
import { Box, Button, IconButton, useTheme } from "@mui/material";
import { ComposableMap, Geographies, Geography, Marker, Point, ZoomableGroup } from "react-simple-maps";
import { useState } from "react";
import { Box, IconButton, useTheme } from "@mui/material";
import { CustomTooltip } from "../shared/CustomTooltip";
import Link from "next/link";
import { UrlService } from "@src/utils/urlUtils";
Expand Down Expand Up @@ -103,7 +103,7 @@ export const ProviderMap: React.FunctionComponent<Props> = ({ providers, initial
return true;
}}
>
<Geographies geography="https://raw.githubusercontent.com/deldersveld/topojson/master/world-countries.json">
<Geographies geography="https://cdn.jsdelivr.net/npm/world-atlas@2/land-110m.json">
{({ geographies }) =>
geographies.map(geo => (
<Geography
Expand Down

0 comments on commit c3a0df6

Please sign in to comment.