Skip to content

Commit 792af5f

Browse files
committed
refactor(web): remove unused import
1 parent fdd2630 commit 792af5f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

web/src/pages/Cases/CaseDetails/Voting/Binary.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useParams } from "react-router-dom";
44
import { Button, Textarea } from "@kleros/ui-components-library";
55
import { useGetMetaEvidence } from "queries/useGetMetaEvidence";
66
import { wrapWithToast } from "utils/wrapWithToast";
7-
import { useWalletClient, usePublicClient } from "wagmi";
7+
import { useWalletClient } from "wagmi";
88
import { prepareWriteDisputeKitClassic } from "hooks/contracts/generated";
99

1010
const Binary: React.FC<{ arbitrable?: string; voteIDs: string[] }> = ({ arbitrable, voteIDs }) => {
@@ -16,7 +16,6 @@ const Binary: React.FC<{ arbitrable?: string; voteIDs: string[] }> = ({ arbitrab
1616
const [isSending, setIsSending] = useState(false);
1717
const [justification, setJustification] = useState("");
1818
const { data: walletClient } = useWalletClient();
19-
const publicClient = usePublicClient();
2019

2120
return id ? (
2221
<Container>

0 commit comments

Comments
 (0)