From ab38a7ab66bfd1a1a10ebf5e4e50970ab22a171c Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Mon, 1 Feb 2021 21:51:32 -0500 Subject: [PATCH] Remove extraneous grid --- .../src/components/General/Profile.tsx | 42 +++++++++---------- 1 file changed, 19 insertions(+), 23 deletions(-) diff --git a/plugins/user-settings/src/components/General/Profile.tsx b/plugins/user-settings/src/components/General/Profile.tsx index b0231d95b6..c8034085bd 100644 --- a/plugins/user-settings/src/components/General/Profile.tsx +++ b/plugins/user-settings/src/components/General/Profile.tsx @@ -24,31 +24,27 @@ export const Profile = () => { const { profile, displayName } = useUserProfile(); return ( - - - - - - - - - - - - {displayName} - - - {profile.email} - - - - - - + + + + + + + + + + {displayName} + + + {profile.email} + - + + + + - + ); };