Skip to content

Commit 44a5cd6

Browse files
authored
ref: Run yarn deduplicate (#6434)
1 parent 2f365ab commit 44a5cd6

File tree

3 files changed

+172
-1788
lines changed

3 files changed

+172
-1788
lines changed

packages/react/src/profiler.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ class Profiler extends React.Component<ProfilerProps> {
119119
}
120120

121121
public render(): React.ReactNode {
122+
// eslint-disable-next-line react/prop-types
122123
return this.props.children;
123124
}
124125
}

packages/react/src/reactrouterv6.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ function handleNavigation(
161161
}
162162
}
163163

164+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
164165
export function withSentryReactRouterV6Routing<P extends Record<string, any>, R extends React.FC<P>>(Routes: R): R {
165166
if (
166167
!_useEffect ||
@@ -225,6 +226,7 @@ export function wrapUseRoutes(origUseRoutes: UseRoutes): UseRoutes {
225226

226227
let isBaseLocation: boolean = false;
227228

229+
// eslint-disable-next-line react/display-name
228230
return (routes: RouteObject[], location?: Partial<Location> | string): React.ReactElement | null => {
229231
const SentryRoutes: React.FC<unknown> = (props: unknown) => {
230232
const Routes = origUseRoutes(routes, location);

0 commit comments

Comments
 (0)