From 6a1a990e5706a9fd36b4d8b4e814df9f0958d2bc Mon Sep 17 00:00:00 2001 From: Kieran Date: Sat, 20 Jan 2024 00:00:44 +0000 Subject: [PATCH] chore: Update translations --- packages/app/src/Components/Embed/TwitchEmbed.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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;