mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-28 12:36:35 +00:00
Suppress error
This commit is contained in:
parent
637973a646
commit
5b5a6847f8
1 changed files with 6 additions and 1 deletions
|
|
@ -162,7 +162,12 @@ class PlaylistWindow extends React.Component<Props> {
|
|||
onClick={this.props.toggleVisualizerStyle}
|
||||
>
|
||||
{/* TODO: Resize the visualizer so it fits */
|
||||
false && <Visualizer analyser={analyser} />}
|
||||
false && (
|
||||
<Visualizer
|
||||
// @ts-ignore Visualizer is not yet typed
|
||||
analyser={analyser}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
<PlaylistActionArea />
|
||||
<ListMenu />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue