Skip to content

Commit 037208c

Browse files
author
dschlabach
committed
console.log removal
1 parent a30fa94 commit 037208c

File tree

1 file changed

+3
-4
lines changed
  • playground/nextjs-app-router/components/form

1 file changed

+3
-4
lines changed

playground/nextjs-app-router/components/form/chain.tsx

+3-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@ export function Chain() {
1717
<Label htmlFor="chain">Chain</Label>
1818
<Select
1919
value={chainId?.toString()}
20-
onValueChange={(value) => {
21-
console.log('(salt-hash) chain value:', value);
22-
return value ? setChainId?.(Number.parseInt(value)) : value;
23-
}}
20+
onValueChange={(value) =>
21+
value ? setChainId?.(Number.parseInt(value)) : value
22+
}
2423
>
2524
<SelectTrigger>
2625
<SelectValue placeholder="Select chain" />

0 commit comments

Comments
 (0)