We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45af357 commit f7cb93bCopy full SHA for f7cb93b
apps/dashboard/src/components/contract-components/contract-publish-form/abi-selector.tsx
@@ -32,14 +32,12 @@ export const AbiSelector: React.FC<AbiSelectorProps> = ({
32
options={options}
33
defaultValue={options.find((o) => o.value === defaultValue)}
34
chakraStyles={{
35
- // @ts-expect-error - this works fine
36
container: (provided) => ({
37
...provided,
38
width: "full",
39
}),
40
}}
41
value={options.find((o) => o.value === value)}
42
43
onChange={(selectedFn) => {
44
if (selectedFn) {
45
onChange((selectedFn as { label: string; value: string }).value);
0 commit comments