diff options
author | Vendicated <vendicated@riseup.net> | 2023-02-16 22:30:55 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-02-16 22:31:13 +0100 |
commit | fbbc198b1bc406aa3e82fba2b675b3132b0dcb6f (patch) | |
tree | 9a4d952f0bd20a1d8d63f027b8fd0e3ac17bab9d /src | |
parent | 224ae979f2f55f01297eb91597cdc4703b93aa74 (diff) | |
download | Vencord-fbbc198b1bc406aa3e82fba2b675b3132b0dcb6f.tar.gz Vencord-fbbc198b1bc406aa3e82fba2b675b3132b0dcb6f.tar.bz2 Vencord-fbbc198b1bc406aa3e82fba2b675b3132b0dcb6f.zip |
Fix PlatformIndicator
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/platformIndicators.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platformIndicators.tsx b/src/plugins/platformIndicators.tsx index f28f9cf..0e3d61a 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); |