Update timeout for active user check.

pull/14/head
Mike Cao 2020-08-18 12:55:15 -07:00
parent 214049e077
commit 0b4fd3ef8f
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export default function ActiveUsers({ websiteId, className }) {
useEffect(() => {
loadData();
const id = setInterval(() => loadData(), 10000);
const id = setInterval(() => loadData(), 60000);
return () => {
clearInterval(id);