File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,11 @@ import {
88import { apiAtom , currentProgramAtom } from "@/lib/atoms" ;
99import { ProgramRegistry , PvqProgram } from "@open-web3/pvq" ;
1010import { useAtomValue } from "jotai" ;
11+ import { SnackbarProvider , enqueueSnackbar } from "notistack" ;
1112import { useMemo , useState } from "react" ;
1213import { Button } from "./ui/button" ;
1314import { Input } from "./ui/input" ;
1415import { Label } from "./ui/label" ;
15- import { SnackbarProvider , enqueueSnackbar } from "notistack" ;
16- import { ChevronsRight } from "lucide-react" ;
17- import { Textarea } from "./ui/textarea" ;
1816
1917const 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 ) : (
You can’t perform that action at this time.
0 commit comments