diff --git a/src/pages/Dashboard/GoogleAnalytics/Realtime.tsx b/src/pages/Dashboard/GoogleAnalytics/Realtime.tsx index 589e57c..332ab31 100644 --- a/src/pages/Dashboard/GoogleAnalytics/Realtime.tsx +++ b/src/pages/Dashboard/GoogleAnalytics/Realtime.tsx @@ -86,7 +86,7 @@ export const GoogleAnalyticsRealtime: React.FC = ( window.clearTimeout(intervalId.current) }) - const renderList = (dataSource: ReportRowItem[]) => ( + const renderRegionList = (dataSource: ReportRowItem[]) => ( = ( renderItem={(item, index) => ( - - } - /> + {item.dimensionValues[0].value.includes('other') ? ( + + } + /> + ) : ( + + } + /> + )} @@ -125,7 +135,7 @@ export const GoogleAnalyticsRealtime: React.FC = ( /> {regionReports.length ? ( - renderList(regionReports) + renderRegionList(regionReports) ) : ( )}