Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukman-01 committed Oct 31, 2024
1 parent 6f83872 commit 015e7da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/nextjs/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import React from "react";
import Link from "next/link";
import type { NextPage } from "next";
import { useAccount } from "wagmi";
import { BugAntIcon, MagnifyingGlassIcon } from "@heroicons/react/24/outline";
import { useScaffoldReadContract } from "~~/hooks/scaffold-eth";
Expand Down Expand Up @@ -130,7 +131,7 @@ const StatusSection = ({
);
};

const Home = () => {
const Home: NextPage = () => {
const { address: connectedAddress } = useAccount();

const {
Expand Down

0 comments on commit 015e7da

Please sign in to comment.