Skip to content

Commit

Permalink
yarn fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiPrasad committed May 12, 2021
1 parent 7ced5c1 commit c09ed8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions packages/gatsby/test/integration.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { render } from '@testing-library/react';
import * as React from 'react';
import { useEffect } from 'react';

import { onClientEntry } from '../gatsby-browser';
Expand All @@ -15,7 +14,7 @@ describe('useEffect', () => {
let calls = 0;

onClientEntry(undefined, {
beforeSend: event => {
beforeSend: (event: any) => {
expect(event).not.toBeUndefined();
calls += 1;

Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/errorboundary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
showReportDialog,
withScope,
} from '@sentry/browser';
import { Event, Severity } from '@sentry/types';
import { Event } from '@sentry/types';
import { parseSemver } from '@sentry/utils';
import hoistNonReactStatics from 'hoist-non-react-statics';
import * as React from 'react';
Expand Down

0 comments on commit c09ed8c

Please sign in to comment.