Skip to content

Commit a70c127

Browse files
committed
fix
1 parent ae834cd commit a70c127

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

demo/components/Query.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ import {
88
import { apiAtom, currentProgramAtom } from "@/lib/atoms";
99
import { ProgramRegistry, PvqProgram } from "@open-web3/pvq";
1010
import { useAtomValue } from "jotai";
11+
import { SnackbarProvider, enqueueSnackbar } from "notistack";
1112
import { useMemo, useState } from "react";
1213
import { Button } from "./ui/button";
1314
import { Input } from "./ui/input";
1415
import { Label } from "./ui/label";
15-
import { SnackbarProvider, enqueueSnackbar } from "notistack";
16-
import { ChevronsRight } from "lucide-react";
17-
import { Textarea } from "./ui/textarea";
1816

1917
const parseParam = (param: any) => {
2018
if (!param) return param;
@@ -200,9 +198,7 @@ export const Query = () => {
200198
</div>
201199
<div className="flex items-center gap-1 font-bold">
202200
hex:{" "}
203-
{(
204-
queryResults[item.identifier] as any
205-
).toHex()}
201+
{(queryResults[item.identifier] as any).toHex()}
206202
</div>
207203
</div>
208204
) : (

0 commit comments

Comments
 (0)