File tree Expand file tree Collapse file tree 3 files changed +0
-16
lines changed Expand file tree Collapse file tree 3 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -20,18 +20,6 @@ export type HydratedReplayRecord = {
20
20
name : null | string ;
21
21
version : null | string ;
22
22
} ;
23
- clicks : Array < {
24
- [ 'click.alt' ] : string | null ;
25
- [ 'click.class' ] : string | null ;
26
- [ 'click.component_name' ] : string | null ;
27
- [ 'click.id' ] : string | null ;
28
- [ 'click.label' ] : string | null ;
29
- [ 'click.role' ] : string | null ;
30
- [ 'click.tag' ] : string | null ;
31
- [ 'click.testid' ] : string | null ;
32
- [ 'click.text' ] : string | null ;
33
- [ 'click.title' ] : string | null ;
34
- } > ;
35
23
/**
36
24
* The number of dead clicks associated with the replay.
37
25
*/
@@ -138,7 +126,6 @@ type ArchivedReplayRecord = {
138
126
name : null ;
139
127
version : null ;
140
128
} ;
141
- clicks : never [ ] ;
142
129
count_dead_clicks : null ;
143
130
count_errors : null ;
144
131
count_infos : null ;
@@ -266,7 +253,6 @@ export type ReplayListRecord = Pick<
266
253
ReplayRecord ,
267
254
| 'activity'
268
255
| 'browser'
269
- | 'clicks'
270
256
| 'count_dead_clicks'
271
257
| 'count_errors'
272
258
| 'count_infos'
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ export function ReplayListFixture(
15
15
name : 'Firefox' ,
16
16
version : '111.0' ,
17
17
} ,
18
- clicks : [ ] ,
19
18
count_dead_clicks : 0 ,
20
19
count_errors : 0 ,
21
20
count_infos : 0 ,
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ export function ReplayRecordFixture(
7
7
) : HydratedReplayRecord {
8
8
return {
9
9
activity : 0 ,
10
- clicks : [ ] ,
11
10
browser : {
12
11
name : 'Other' ,
13
12
version : '' ,
You can’t perform that action at this time.
0 commit comments