diff --git a/explorer/src/pages/MixnodesMap/index.tsx b/explorer/src/pages/MixnodesMap/index.tsx index 84a2b7cc44..d3bf992f20 100644 --- a/explorer/src/pages/MixnodesMap/index.tsx +++ b/explorer/src/pages/MixnodesMap/index.tsx @@ -102,11 +102,11 @@ export const PageMixnodesMap: React.FC = () => { if (countryData?.data && !countryData.isLoading) { return ( - - - + <Grid> + <Grid item data-testid="mixnodes-globe"> + <Title text="Overview" /> </Grid> - <Grid item xs={12} lg={9}> + <Grid item> <Grid container spacing={2}> <Grid item xs={12}> <ContentCard title="Distribution of nodes"> diff --git a/explorer/src/utils/index.ts b/explorer/src/utils/index.ts index 2cc8efeb13..7d0275798d 100644 --- a/explorer/src/utils/index.ts +++ b/explorer/src/utils/index.ts @@ -55,7 +55,7 @@ export function countryDataToGridRow( const updatedCountryRecord: CountryDataRowType = { ...each, id: index, - countryName: getName(each.ISO3, 'en', { select: 'official' }), + countryName: getName(each.ISO3, 'en', { select: 'alias' }), percentage: ((each.nodes * 100) / totalNodes).toFixed(1), }; return updatedCountryRecord;