diff --git a/assets/pages/StatisticsPage.tsx b/assets/pages/StatisticsPage.tsx index 0cf1881..b9bfd92 100644 --- a/assets/pages/StatisticsPage.tsx +++ b/assets/pages/StatisticsPage.tsx @@ -1,7 +1,7 @@ import React, {useEffect, useState} from 'react' import type { Statistics} from '../utils/api' import {getStatistics} from '../utils/api' -import {Card, Col, Divider, Row, Statistic, Tooltip} from 'antd' +import {Card, Col, Divider, Flex, Row, Statistic, Tooltip} from 'antd' import {t} from 'ttag' import { AimOutlined, @@ -104,20 +104,19 @@ export default function StatisticsPage() { - + {stats?.domainCount .sort((a, b) => b.domain - a.domain) - .map(({domain, tld}) => - + .map(({domain, tld}) => + - - )} - + )} + ) }