Skip to content

Commit

Permalink
fix(replay): Mark ui.slowClickDetected clickCount as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan953 committed Jun 21, 2023
1 parent 6afd3e0 commit 97abbe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/replay/src/types/replayFrame.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ interface SlowClickFrameData extends ClickFrameData {
route?: string;
timeAfterClickMs: number;
endReason: string;
clickCount: number;
clickCount?: number;
}
export interface SlowClickFrame extends BaseBreadcrumbFrame {
category: 'ui.slowClickDetected';
Expand Down

0 comments on commit 97abbe9

Please sign in to comment.