Skip to content

Commit f5a79cd

Browse files
committed
organize imports
1 parent 1eff1c0 commit f5a79cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev-packages/e2e-tests/test-applications/react-router-7-spa/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { defineConfig } from 'vite';
21
import react from '@vitejs/plugin-react';
2+
import { defineConfig } from 'vite';
33

44
// https://vite.dev/config/
55
export default defineConfig({

packages/react/src/reactrouterv6-compat-utils.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import {
2323
import type { Client, Integration, Span, TransactionSource } from '@sentry/types';
2424
import * as React from 'react';
2525

26+
import hoistNonReactStatics from 'hoist-non-react-statics';
2627
import { DEBUG_BUILD } from './debug-build';
2728
import type {
2829
Action,
@@ -40,7 +41,6 @@ import type {
4041
UseNavigationType,
4142
UseRoutes,
4243
} from './types';
43-
import hoistNonReactStatics from 'hoist-non-react-statics';
4444

4545
let _useEffect: UseEffect;
4646
let _useLocation: UseLocation;

packages/react/src/reactrouterv7.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
import type { browserTracingIntegration } from '@sentry/browser';
33

44
import type { Integration } from '@sentry/types';
5-
import type { CreateRouterFunction, Router, RouterState, UseRoutes } from './types';
65
import type { ReactRouterOptions } from './reactrouterv6-compat-utils';
76
import {
87
createReactRouterV6CompatibleTracingIntegration,
98
createV6CompatibleWithSentryReactRouterRouting,
109
createV6CompatibleWrapCreateBrowserRouter,
1110
createV6CompatibleWrapUseRoutes,
1211
} from './reactrouterv6-compat-utils';
12+
import type { CreateRouterFunction, Router, RouterState, UseRoutes } from './types';
1313

1414
/**
1515
* A browser tracing integration that uses React Router v7 to instrument navigations.

0 commit comments

Comments
 (0)