There was an error while loading. Please reload this page.
1 parent 02c075f commit 0a11ca0Copy full SHA for 0a11ca0
1 file changed
components/abi-form/basic.tsx
@@ -1,9 +1,9 @@
1
import { parse } from "@ethui/abiparse";
2
+import { useCallback, useState } from "react";
3
import {
4
AddressAutoCompleteTextInput,
5
type AddressData,
-} from "components/address-autocomplete-input.js";
6
-import { useCallback, useState } from "react";
+} from "../../components/address-autocomplete-input.js";
7
import { Debug, stringify } from "../../lib/utils.js";
8
import { Input } from "../shadcn/input.js";
9
import type { InnerProps } from "./abi-input.js";
@@ -24,8 +24,6 @@ export function Basic({
24
const handleChange = useCallback(
25
(e: React.ChangeEvent<HTMLInputElement>) => {
26
const value = parse(e.target.value);
27
-
28
- console.log("value", value);
29
setValue(value);
30
onChange(value);
31
},
0 commit comments