diff --git a/src/app/(main)/websites/[id]/realtime/RealtimeLog.tsx b/src/app/(main)/websites/[id]/realtime/RealtimeLog.tsx
index e33320ec..7cae0abc 100644
--- a/src/app/(main)/websites/[id]/realtime/RealtimeLog.tsx
+++ b/src/app/(main)/websites/[id]/realtime/RealtimeLog.tsx
@@ -8,11 +8,11 @@ import useLocale from 'components/hooks/useLocale';
import useCountryNames from 'components/hooks/useCountryNames';
import { BROWSERS } from 'lib/constants';
import { stringToColor } from 'lib/format';
-import { formatDate } from 'lib/date';
import { safeDecodeURI } from 'next-basics';
import Icons from 'components/icons';
import styles from './RealtimeLog.module.css';
import useMessages from 'components/hooks/useMessages';
+import { format } from 'date-fns';
const TYPE_ALL = 'all';
const TYPE_PAGEVIEW = 'pageview';
@@ -50,7 +50,7 @@ export function RealtimeLog({ data, websiteDomain }) {
},
];
- const getTime = ({ createdAt }) => formatDate(new Date(createdAt), 'pp', locale);
+ const getTime = ({ timestamp }) => format(timestamp, 'h:mm:ss');
const getColor = ({ id, sessionId }) => stringToColor(sessionId || id);
@@ -146,7 +146,7 @@ export function RealtimeLog({ data, websiteDomain }) {
{logs?.length === 0 && }
{logs?.length > 0 && (
-
+
{Row}
)}
diff --git a/yarn.lock b/yarn.lock
index bdb0d484..1ecdaaf3 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2431,6 +2431,13 @@
hoist-non-react-statics "^3.3.0"
redux "^4.0.0"
+"@types/react-window@^1.8.8":
+ version "1.8.8"
+ resolved "https://registry.yarnpkg.com/@types/react-window/-/react-window-1.8.8.tgz#c20645414d142364fbe735818e1c1e0a145696e3"
+ integrity sha512-8Ls660bHR1AUA2kuRvVG9D/4XpRC6wjAaPT9dil7Ckc76eP9TKWZwwmgfq8Q1LANX3QNDnoU4Zp48A3w+zK69Q==
+ dependencies:
+ "@types/react" "*"
+
"@types/react@*", "@types/react@16 || 17 || 18":
version "18.2.30"
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.30.tgz#b84f786864fc46f18545364a54d5e1316308e59b"