Skip to content

Commit

Permalink
remove unrelated import changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jungwoo3490 committed Apr 16, 2024
1 parent 8fae15a commit 2cbb43f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/react-router-dom/server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import type {
Location,
RouteObject,
To,
} from "react-router-dom";
} from "./index";
import {
createPath,
parsePath,
Expand All @@ -38,7 +38,7 @@ import {
UNSAFE_DataRouterStateContext as DataRouterStateContext,
UNSAFE_FetchersContext as FetchersContext,
UNSAFE_ViewTransitionContext as ViewTransitionContext,
} from "react-router-dom";
} from "./index";

export interface StaticRouterProps {
basename?: string;
Expand Down Expand Up @@ -315,6 +315,7 @@ export function createStaticRouter(
v7_partialHydration: opts.future?.v7_partialHydration === true,
v7_prependBasename: false,
v7_relativeSplatPath: opts.future?.v7_relativeSplatPath === true,
unstable_skipActionErrorRevalidation: false,
};
},
get state() {
Expand Down

0 comments on commit 2cbb43f

Please sign in to comment.