diff --git a/lib/raygun.ts b/lib/raygun.ts index 282f5d6..018b222 100644 --- a/lib/raygun.ts +++ b/lib/raygun.ts @@ -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);