fragment not needed

This commit is contained in:
Ivan 2023-01-21 10:47:50 -06:00
parent a2523f14ae
commit ea61b01f37
No known key found for this signature in database
GPG Key ID: 600CE24100F54574

View File

@ -1,7 +1,6 @@
const SoundCloudEmbed = ({link}: {link: string}) => {
return(
<>
<iframe
width="100%"
height="166"
@ -9,7 +8,6 @@ const SoundCloudEmbed = ({link}: {link: string}) => {
allow="autoplay"
src={`https://w.soundcloud.com/player/?url=${link}`}>
</iframe>
</>
)
}