Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Jan 11, 2023
1 parent a91b02a commit bd1bb06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/replay/src/util/createReplayEnvelope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ export function createReplayEnvelope(
// If string then we need to encode to UTF8, otherwise will have
// wrong size. TextEncoder has similar browser support to
// MutationObserver, although it does not accept IE11.
length: typeof recordingData === 'string' ? new TextEncoder().encode(recordingData).length : recordingData.length,
length:
typeof recordingData === 'string' ? new TextEncoder().encode(recordingData).length : recordingData.length,
},
recordingData,
],
Expand Down

0 comments on commit bd1bb06

Please sign in to comment.