fix(log): Update recent_activity by event name (#32681)

This commit is contained in:
JUST.in DO IT
2025-03-17 09:18:47 -07:00
committed by GitHub
parent c9e2c7037e
commit 449f51aed5
7 changed files with 98 additions and 25 deletions

View File

@@ -359,7 +359,14 @@ function ExploreViewContainer(props) {
}
useComponentDidMount(() => {
props.actions.logEvent(LOG_ACTIONS_MOUNT_EXPLORER);
props.actions.logEvent(
LOG_ACTIONS_MOUNT_EXPLORER,
props.slice?.slice_id
? {
slice_id: props.slice.slice_id,
}
: undefined,
);
});
useChangeEffect(tabId, (previous, current) => {