diff --git a/src/pages/Container/Map/components/Content/IndexInfo/Bottom/RecordStatsPanel/index.js b/src/pages/Container/Map/components/Content/IndexInfo/Bottom/RecordStatsPanel/index.js index ed6dce0..f565472 100644 --- a/src/pages/Container/Map/components/Content/IndexInfo/Bottom/RecordStatsPanel/index.js +++ b/src/pages/Container/Map/components/Content/IndexInfo/Bottom/RecordStatsPanel/index.js @@ -12,8 +12,7 @@ function RecordStatsPanel(props) { const [list, setList] = useState([]); useEffect(() => { const loadList = async () => { - const { data } = - await props.getXgfStatisticsListRecordProjectStatistics(); + const { data } = await props.getXgfStatisticsListRecordProjectStatistics(); setList(data); };