Skip to content

Commit dff1756

Browse files
committed
πŸ› more removing transition
1 parent 21586ad commit dff1756

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

β€Žpackages/rum-core/src/domain/assembly.tsβ€Ž

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,6 @@ export function startRumAssembly(
8686
...VIEW_MODIFIABLE_FIELD_PATHS,
8787
...ROOT_MODIFIABLE_FIELD_PATHS,
8888
},
89-
[RumEventType.TRANSITION]: {
90-
...USER_CUSTOMIZABLE_FIELD_PATHS,
91-
...VIEW_MODIFIABLE_FIELD_PATHS,
92-
...ROOT_MODIFIABLE_FIELD_PATHS,
93-
},
9489
}
9590
const eventRateLimiters = {
9691
[RumEventType.ERROR]: createEventRateLimiter(

β€Žpackages/rum-core/src/domain/trackEventCounts.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function trackEventCounts({
3030
}
3131

3232
const subscription = lifeCycle.subscribe(LifeCycleEventType.RUM_EVENT_COLLECTED, (event): void => {
33-
if (event.type === 'view' || event.type === 'vital' || event.type === 'transition' || !isChildEvent(event)) {
33+
if (event.type === 'view' || event.type === 'vital' || !isChildEvent(event)) {
3434
return
3535
}
3636
switch (event.type) {

0 commit comments

Comments
Β (0)