From cf677a610bc822981ab9c8ebc3511297eeb69fcc Mon Sep 17 00:00:00 2001 From: Tassoman Date: Sat, 21 Jan 2023 16:15:17 +0000 Subject: [PATCH] transatable staff badges inside profile --- app/soapbox/features/ui/components/profile-info-panel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/soapbox/features/ui/components/profile-info-panel.tsx b/app/soapbox/features/ui/components/profile-info-panel.tsx index ec4929163..4d522077a 100644 --- a/app/soapbox/features/ui/components/profile-info-panel.tsx +++ b/app/soapbox/features/ui/components/profile-info-panel.tsx @@ -48,9 +48,9 @@ const ProfileInfoPanel: React.FC = ({ account, username }) => const getStaffBadge = (): React.ReactNode => { if (account?.admin) { - return ; + return } key='staff' />; } else if (account?.moderator) { - return ; + return } key='staff' />; } else { return null; }