Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
cdelst committed Sep 12, 2024
1 parent 69d1196 commit ef17e4c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions internal/dev_server/ui/src/EnvironmentSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ export function EnvironmentSelector({
return <span>Loading environments...</span>;
}

console.log(searchQuery);

return (
<Stack gap="3">
<Box display="flex" justifyContent="space-between" alignItems="center">
Expand All @@ -79,10 +77,7 @@ export function EnvironmentSelector({
<Input
id="environmentSearch"
value={searchQuery}
onChange={(e) => {
console.log(e.target.value);
setSearchQuery(e.target.value || '');
}}
onChange={(e) => setSearchQuery(e.target.value || '')}
placeholder="Search environments..."
aria-label="Search environments"
/>
Expand Down

0 comments on commit ef17e4c

Please sign in to comment.