Skip to content

Commit

Permalink
bugfix(comboBoxLabels): removed commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
jarvisraymond-uchicago committed Oct 16, 2024
1 parent 312203f commit ea9c856
Showing 1 changed file with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,13 @@ const TeamsDropdown = ({
selectedTeamProject,
setSelectedTeamProject,
}) => {
console.log('teams', teams);
console.log(
'selectedTeamProject?.teamName ln 7 in TeamsDropdown',
JSON.stringify(selectedTeamProject),
);

// const [isOpen, setIsOpen] = useState(false);

const handleChange = (event) => {
const selectedValue = event.target.value;
setSelectedTeamProject(selectedValue);
};

const selectedValue = selectedTeamProject === null ? 'placeholder' : selectedTeamProject;
const selectedValue =
selectedTeamProject === null ? 'placeholder' : selectedTeamProject;

return (
<div className='teams-dropdown'>
Expand Down

0 comments on commit ea9c856

Please sign in to comment.