Skip to content

Commit a644a9a

Browse files
committed
Remove console.log calls left misttakenly from earlier commit
1 parent d8869bd commit a644a9a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/form.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,13 @@ export function FormRadioInput({label, help_text, error, value, options, ...prop
7070

7171

7272
export function FormSelectInput({label, help_text, error, value, options, ...props}) {
73-
console.log("********", options, value)
7473
return (
7574
<div>
7675
{label && <label>{label}</label>}
7776
<select value={value || ''} {...props}>
7877
<option disabled value="" key={'__placehlder'}>Select...</option>
7978
{options.map((option, i) => {
80-
let label, inputValue, selected;
79+
let label, inputValue;
8180
if (typeof option === 'object') {
8281
label = option.label;
8382
inputValue = option.value;

0 commit comments

Comments
 (0)