Skip to content

Commit 0a11ca0

Browse files
authored
Autocomplete fix (#140)
* fix * fix * fix
1 parent 02c075f commit 0a11ca0

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

components/abi-form/basic.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { parse } from "@ethui/abiparse";
2+
import { useCallback, useState } from "react";
23
import {
34
AddressAutoCompleteTextInput,
45
type AddressData,
5-
} from "components/address-autocomplete-input.js";
6-
import { useCallback, useState } from "react";
6+
} from "../../components/address-autocomplete-input.js";
77
import { Debug, stringify } from "../../lib/utils.js";
88
import { Input } from "../shadcn/input.js";
99
import type { InnerProps } from "./abi-input.js";
@@ -24,8 +24,6 @@ export function Basic({
2424
const handleChange = useCallback(
2525
(e: React.ChangeEvent<HTMLInputElement>) => {
2626
const value = parse(e.target.value);
27-
28-
console.log("value", value);
2927
setValue(value);
3028
onChange(value);
3129
},

0 commit comments

Comments
 (0)