mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
fix timer
This commit is contained in:
parent
f2d720680e
commit
810ae101ed
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ import useFetch from 'hooks/useFetch';
|
|||
import Dot from 'components/common/Dot';
|
||||
import styles from './ActiveUsers.module.css';
|
||||
|
||||
export default function ActiveUsers({ websiteId, className, value, interval = 60000000 }) {
|
||||
export default function ActiveUsers({ websiteId, className, value, interval = 60000 }) {
|
||||
const url = websiteId ? `/website/${websiteId}/active` : null;
|
||||
const { data } = useFetch(url, {
|
||||
interval,
|
||||
|
|
|
|||
Loading…
Reference in a new issue