Add UTM params to website details page

This commit is contained in:
Chris Walsh 2022-07-21 16:22:43 -07:00
parent 92b009fa1e
commit c3d6467b99
No known key found for this signature in database
GPG key ID: 28EE0CCA6032019E
4 changed files with 63 additions and 2 deletions

View file

@ -22,6 +22,7 @@ export default function MetricsTable({
filterOptions,
limit,
onDataLoad,
delay = null,
...props
}) {
const [{ startDate, endDate, modified }] = useDateRange(websiteId);
@ -46,9 +47,9 @@ export default function MetricsTable({
country,
},
onDataLoad,
delay: DEFAULT_ANIMATION_DURATION,
delay: delay || DEFAULT_ANIMATION_DURATION,
},
[modified, url, referrer, os, browser, device, country],
[type, modified, url, referrer, os, browser, device, country],
);
const filteredData = useMemo(() => {