Skip to content

Commit

Permalink
removed leftover debugging from initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
replaysMike committed Feb 9, 2024
1 parent e149264 commit a423524
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/PhoneInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ const PhoneInput = ({
};
// load countries data
let orderedCountries = data_countries.map(c => ({ ...c, value: c.iso2 }));
console.log('orderedCountries', orderedCountries);
if (priority && priority.length > 0) {
if (removePrioritized)
orderedCountries = _.filter(orderedCountries, i => !priority.includes(i.iso2));
Expand Down Expand Up @@ -93,8 +92,6 @@ const PhoneInput = ({

};

console.log('countries', countries);

return (
<div className='phone-input'>
<Dropdown
Expand Down

0 comments on commit a423524

Please sign in to comment.