diff --git a/src/components/Hook/useReadTimer.ts b/src/components/Hook/useReadTimer.ts index 67cfd0389a..02f4a3efb2 100644 --- a/src/components/Hook/useReadTimer.ts +++ b/src/components/Hook/useReadTimer.ts @@ -25,7 +25,7 @@ export const useReadTimer = ({ articleId, container }: Props) => { }, 3000) const storeReadTime = () => { - if (articleId && readTimer?.current) + if (articleId && readTimer) analytics.trackEvent('read_time', { articleId, time: readTimer.current,