Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelbeltran committed May 6, 2024
1 parent f5bdc81 commit 23c7273
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions lib/raygun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,12 +289,8 @@ class Raygun {
* @param exception error to report
* @private
*/
private sendSync(
exception: Error | string,
): void {
const result = this.buildSendOptions(
exception,
);
private sendSync(exception: Error | string): void {
const result = this.buildSendOptions(exception);

if (result.valid) {
raygunSyncTransport.send(result.options);
Expand Down

0 comments on commit 23c7273

Please sign in to comment.