Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion apps/hyperdrive-trading/src/ui/app/App/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { ReactElement, StrictMode } from "react";

import { createRouter, RouterProvider } from "@tanstack/react-router";
import {
createHashHistory,
createRouter,
RouterProvider,
} from "@tanstack/react-router";

// Import the generated route tree
import { routeTree } from "src/routeTree.gen";
Expand All @@ -11,6 +15,7 @@ import { useAccount, useAccountEffect } from "wagmi";
const router = createRouter({
routeTree,
basepath: import.meta.env.VITE_BASE_PATH,
history: createHashHistory(),
});

// Register the router instance for type safety
Expand Down
Loading