Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish committed Oct 29, 2024
1 parent 70e9ad8 commit 14fdfa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/reporting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createRawSecurityEnvelope } from './envelope';

/** Captures reports from the Reporting API */
export async function captureReportingApi(reports: Report[], options?: { client?: Client }): Promise<void> {
const client = options?.client || getClient();
const client = options ? options.client : getClient();

if (!client) {
// eslint-disable-next-line no-console
Expand Down

0 comments on commit 14fdfa0

Please sign in to comment.