File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ function handleSlowClick(
101
101
const breadcrumb = {
102
102
message : clickBreadcrumb . message ,
103
103
timestamp : clickBreadcrumb . timestamp ,
104
- category : 'ui.slowClickDetected' as const ,
104
+ category : 'ui.slowClickDetected' ,
105
105
data : {
106
106
...clickBreadcrumb . data ,
107
107
url : WINDOW . location . href ,
Original file line number Diff line number Diff line change @@ -779,7 +779,7 @@ export class ReplayContainer implements ReplayContainerInterface {
779
779
*/
780
780
private _handleWindowBlur : ( ) => void = ( ) => {
781
781
const breadcrumb = createBreadcrumb ( {
782
- category : 'ui.blur' as const ,
782
+ category : 'ui.blur' ,
783
783
} ) ;
784
784
785
785
// Do not count blur as a user action -- it's part of the process of them
@@ -792,7 +792,7 @@ export class ReplayContainer implements ReplayContainerInterface {
792
792
*/
793
793
private _handleWindowFocus : ( ) => void = ( ) => {
794
794
const breadcrumb = createBreadcrumb ( {
795
- category : 'ui.focus' as const ,
795
+ category : 'ui.focus' ,
796
796
} ) ;
797
797
798
798
// Do not count focus as a user action -- instead wait until they focus and
@@ -1095,7 +1095,7 @@ export class ReplayContainer implements ReplayContainerInterface {
1095
1095
// We can show this in the UI as an information with potential performance improvements
1096
1096
if ( count > mutationBreadcrumbLimit || overMutationLimit ) {
1097
1097
const breadcrumb = createBreadcrumb ( {
1098
- category : 'replay.mutations' as const ,
1098
+ category : 'replay.mutations' ,
1099
1099
data : {
1100
1100
count,
1101
1101
limit : overMutationLimit ,
You can’t perform that action at this time.
0 commit comments