From fbbc198b1bc406aa3e82fba2b675b3132b0dcb6f Mon Sep 17 00:00:00 2001 From: Vendicated Date: Thu, 16 Feb 2023 22:30:55 +0100 Subject: [PATCH] Fix PlatformIndicator --- src/plugins/platformIndicators.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/platformIndicators.tsx b/src/plugins/platformIndicators.tsx index f28f9cffb..0e3d61a99 100644 --- a/src/plugins/platformIndicators.tsx +++ b/src/plugins/platformIndicators.tsx @@ -55,7 +55,7 @@ const Icons = { }; type Platform = keyof typeof Icons; -const getStatusColor = findByCodeLazy("STATUS_YELLOW", "TWITCH", "STATUS_GREY"); +const getStatusColor = findByCodeLazy(".TWITCH", ".STREAMING", ".INVISIBLE"); const PlatformIcon = ({ platform, status }: { platform: Platform, status: string; }) => { const tooltip = platform[0].toUpperCase() + platform.slice(1);