Skip to content

Commit

Permalink
update useAccount (hook)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadai2010 committed Sep 30, 2024
1 parent 08f2823 commit 66d2f5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";
import Image from "next/image";
import type { NextPage } from "next";
import { useAccount } from "@starknet-react/core";
import { useAccount } from "~~/hooks/useAccount";

const Home: NextPage = () => {
const connectedAddress = useAccount();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";

import { useAccount } from "@starknet-react/core";
import { useAccount } from "~~/hooks/useAccount";
import { useDeployedContractInfo } from "~~/hooks/scaffold-stark";
import { useTargetNetwork } from "~~/hooks/scaffold-stark/useTargetNetwork";
import { useScaffoldReadContract } from "~~/hooks/scaffold-stark/useScaffoldReadContract";
Expand Down

0 comments on commit 66d2f5f

Please sign in to comment.