We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5afae60 commit 20a10d6Copy full SHA for 20a10d6
src/pages/ExploreSetPage/SetExploreCard/SetAudioPlayer.tsx
@@ -11,11 +11,9 @@ export function SetAudioPlayer({
11
return null;
12
}
13
14
- // Build SoundCloud iframe URL with parameters
15
const baseUrl = "https://w.soundcloud.com/player/";
16
- const encodedUrl = encodeURIComponent(soundcloudUrl);
17
const params = new URLSearchParams({
18
- url: encodedUrl,
+ url: soundcloudUrl,
19
auto_play: "true",
20
color: "8b5cf6",
21
buying: "false",
@@ -25,7 +23,6 @@ export function SetAudioPlayer({
25
23
show_user: "false",
26
24
single_active: "true",
27
download: "false",
28
- // start_track: "0",
29
});
30
const widgetUrl = `${baseUrl}?${params.toString()}`;
31
0 commit comments