diff --git a/src/components/Picker/PopupPicker.tsx b/src/components/Picker/PopupPicker.tsx index 54c2547..8cddc93 100644 --- a/src/components/Picker/PopupPicker.tsx +++ b/src/components/Picker/PopupPicker.tsx @@ -30,7 +30,6 @@ const PopupPicker = ({ const [defaultValue, setDefaultValue] = useState<(string | number)[]>([]) const [defaultOptions, setDefaultOptions] = useState([]) const changePicker = (options: any[], values: any, columnIndex: number) => { - debugger if (onChange) { console.log('picker onChange', columnIndex, values, options); diff --git a/src/user_pages/edit/index.tsx b/src/user_pages/edit/index.tsx index 96a27af..d4ec969 100644 --- a/src/user_pages/edit/index.tsx +++ b/src/user_pages/edit/index.tsx @@ -231,7 +231,6 @@ const EditProfilePage: React.FC = () => { // 处理地区选择 const handle_location_change = (e: any) => { - debugger const [country, province, city] = e; handle_field_edit({ country, province, city }); }; @@ -537,4 +536,4 @@ const EditProfilePage: React.FC = () => { ); }; -export default EditProfilePage; \ No newline at end of file +export default EditProfilePage;