We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a30fa94 commit 037208cCopy full SHA for 037208c
playground/nextjs-app-router/components/form/chain.tsx
@@ -17,10 +17,9 @@ export function Chain() {
17
<Label htmlFor="chain">Chain</Label>
18
<Select
19
value={chainId?.toString()}
20
- onValueChange={(value) => {
21
- console.log('(salt-hash) chain value:', value);
22
- return value ? setChainId?.(Number.parseInt(value)) : value;
23
- }}
+ onValueChange={(value) =>
+ value ? setChainId?.(Number.parseInt(value)) : value
+ }
24
>
25
<SelectTrigger>
26
<SelectValue placeholder="Select chain" />
0 commit comments