From ec20556d5c59d9ad766e8a2e6d63dfc20e80c396 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Tue, 22 Nov 2022 17:06:24 +0100 Subject: [PATCH] PlatformIndicators: Fix icon colours --- 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 2917ba8..1c9bbf1 100644 --- a/src/plugins/platformIndicators.tsx +++ b/src/plugins/platformIndicators.tsx @@ -58,7 +58,7 @@ const PlatformIcon = ({ platform, status }: { platform: Platform, status: string const tooltip = platform[0].toUpperCase() + platform.slice(1); const Icon = Icons[platform] ?? Icons.desktop; - return ; + return ; }; const PlatformIndicator = ({ user }: { user: User; }) => {