fix: iframe credentialless

This commit is contained in:
2024-01-19 23:58:46 +00:00
parent 9ceb3c705f
commit d1972542b7
9 changed files with 9 additions and 2 deletions

View File

@ -52,7 +52,7 @@ const TidalEmbed = ({ link }: { link: string }) => {
{link}
</a>
);
return <iframe src={source} style={extraStyles} width="100%" title="TIDAL Embed" frameBorder={0} />;
return <iframe src={source} style={extraStyles} width="100%" title="TIDAL Embed" frameBorder={0} credentialless="" />;
};
export default TidalEmbed;