Skip to content

Commit

Permalink
Fix soundcloud player props
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Mar 24, 2023
1 parent f1c9965 commit 184cc06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sources/soundcloud/PlayerWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function PlayerWrapper({ mode, ...props }: PlayerWrapperProps) {
if (mode === 'preview') {
return <PreviewPlayer {...props} />;
}
return <Player {...props} mode={mode} />;
return <Player {...props} />;
}

export default PlayerWrapper;

0 comments on commit 184cc06

Please sign in to comment.