diff --git a/packages/app/src/Components/Embed/TwitchEmbed.tsx b/packages/app/src/Components/Embed/TwitchEmbed.tsx index 8f651ab3..c9f5099a 100644 --- a/packages/app/src/Components/Embed/TwitchEmbed.tsx +++ b/packages/app/src/Components/Embed/TwitchEmbed.tsx @@ -2,7 +2,13 @@ const TwitchEmbed = ({ link }: { link: string }) => { const channel = link.split("/").slice(-1); const args = `?channel=${channel}&parent=${window.location.hostname}&muted=true`; - return ; + return ( + + ); }; export default TwitchEmbed;