Skip to content

Commit

Permalink
fix(replay): Fix typo in Replay types (#9028)
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Sep 15, 2023
1 parent a65c7ef commit e24d7e0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/replay/src/types/replayFrame.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,7 @@ interface ReplayRequestFrame extends ReplayBaseSpanFrame {

interface ReplayResourceFrame extends ReplayBaseSpanFrame {
data: ResourceData;
op:
| 'resource.css'
| 'resource.ReplayiFrame'
| 'resource.img'
| 'resource.link'
| 'resource.other'
| 'resource.script';
op: 'resource.css' | 'resource.iframe' | 'resource.img' | 'resource.link' | 'resource.other' | 'resource.script';
}

export type ReplaySpanFrame =
Expand Down

0 comments on commit e24d7e0

Please sign in to comment.