Skip to content

Commit

Permalink
fix problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhaiwat10 committed Aug 28, 2024
1 parent 6b55cd1 commit 001eba8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/nextjs/src/app/faucet/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default function Faucet() {
: TESTNET_FAUCET_LINK
}
title="faucet"
className="w-full h-screen ovreflow-scroll"
className="w-full h-screen overflow-scroll"
/>
</>
)}
Expand Down
2 changes: 1 addition & 1 deletion templates/nextjs/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useActiveWallet } from "@/hooks/useActiveWallet";
import { useFaucet } from "@/hooks/useFaucet";
import Head from "next/head";
import { bn } from "fuels";
import { useRouter } from "next/router";
import { useRouter } from "next/navigation";

export const Layout = ({ children }: { children: React.ReactNode }) => {
const { faucetWallet } = useFaucet();
Expand Down
2 changes: 1 addition & 1 deletion templates/vite/src/routes/faucet.lazy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function Index() {
: TESTNET_FAUCET_LINK
}
title="faucet"
className="w-full h-screen ovreflow-scroll"
className="w-full h-screen overflow-scroll"
/>
</>
)}
Expand Down

0 comments on commit 001eba8

Please sign in to comment.