checkpoint

This commit is contained in:
Brian Cao 2022-07-29 22:30:09 -07:00
parent 3e2c098c05
commit 8f934c7e6c
14 changed files with 73 additions and 63 deletions

View file

@ -92,8 +92,7 @@ export default function RealtimeLog({ data, websites, websiteId }) {
}
function getDetail({
event_type,
event_value,
event_name,
view_id,
session_id,
url,
@ -103,10 +102,10 @@ export default function RealtimeLog({ data, websites, websiteId }) {
device,
website_id,
}) {
if (event_type) {
if (event_name) {
return (
<div>
<Tag>{event_type}</Tag> {event_value}
<Tag>{event_name}</Tag>
</div>
);
}