Skip to content

Commit

Permalink
* picker: remove debug log.
Browse files Browse the repository at this point in the history
  • Loading branch information
catouse committed Jan 8, 2024
1 parent 3d0fbe7 commit 29988a9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/picker/src/component/picker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,6 @@ export class Picker<S extends PickerState = PickerState, O extends PickerOptions
}

setValue(value: unknown = [], silent?: boolean) {
console.log('> setValue1', value);
let valueList = this.formatValueList(value);
if (valueList.length) {
const {items, limitValueInList} = this.props;
Expand All @@ -366,7 +365,6 @@ export class Picker<S extends PickerState = PickerState, O extends PickerOptions
}
}
const stateValue = this.formatValue(valueList);
console.log('> setValue2', stateValue);
return super.setValue(stateValue, silent);
}
}

0 comments on commit 29988a9

Please sign in to comment.