From 130b066d362ef9262f6753f9dfdedaa9a21f6c3d Mon Sep 17 00:00:00 2001 From: Shivashis Padhi Date: Tue, 29 Nov 2022 11:33:08 +0530 Subject: [PATCH] Switch teamname display from 'capitalize' -> 'uppercase' (#6785) --- app/components/team_sidebar/team_list/team_item/team_icon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/team_sidebar/team_list/team_item/team_icon.tsx b/app/components/team_sidebar/team_list/team_item/team_icon.tsx index b8c0eadfe..898dc80ea 100644 --- a/app/components/team_sidebar/team_list/team_item/team_icon.tsx +++ b/app/components/team_sidebar/team_list/team_item/team_icon.tsx @@ -31,7 +31,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { }, text: { color: theme.sidebarText, - textTransform: 'capitalize', + textTransform: 'uppercase', }, image: { borderRadius: 8,