Skip to content

Commit

Permalink
Fix youtube search options preview
Browse files Browse the repository at this point in the history
  • Loading branch information
ebma committed Sep 9, 2023
1 parent 69df107 commit 7fbd730
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions web/src/components/SearchArea/Tab/SearchYoutubeTab.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react"
import _ from "lodash"
import Autocomplete from "@mui/lab/Autocomplete"
import Autocomplete from "@mui/material/Autocomplete"
import Grid from "@mui/material/Grid"
import PlayIcon from "@mui/icons-material/PlayArrow"
import TextField from "@mui/material/TextField"
Expand Down Expand Up @@ -72,18 +72,6 @@ function SearchYoutubeTab(props: SearchYoutubeTabProps) {
onChange={handleChange}
/>
)}
renderOption={(_props, option: TrackSearchResult) => {
return (
<Grid item xs>
<Typography variant="body1" color="textPrimary">
{option.title}
</Typography>
<Typography variant="body2" color="textSecondary">
{option.url}
</Typography>
</Grid>
)
}}
/>
<StyledButton
disabled={!Boolean(selectedTrack)}
Expand Down

0 comments on commit 7fbd730

Please sign in to comment.