Skip to content

Commit

Permalink
Fixed homepage redirect (MetaMask#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas authored Mar 30, 2023
1 parent c616f76 commit c1e2099
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from "react";
import { Redirect } from "@docusaurus/router";
import useBaseUrl from "@docusaurus/useBaseUrl";

export default function Home(): JSX.Element {
return (
<Redirect to="/wallet" />
<Redirect to={useBaseUrl("/wallet")} />
);
}

0 comments on commit c1e2099

Please sign in to comment.