diff --git a/editor/src/components/navigator/left-pane/settings-pane.tsx b/editor/src/components/navigator/left-pane/settings-pane.tsx index 256c6af8df94..9b1c3140c1ca 100644 --- a/editor/src/components/navigator/left-pane/settings-pane.tsx +++ b/editor/src/components/navigator/left-pane/settings-pane.tsx @@ -11,6 +11,7 @@ import { FlexRow, H2, HeadlessStringInput, + Icons, PopupList, Section, SectionBodyArea, @@ -247,6 +248,25 @@ export const SettingsPane = React.memo(() => { >
{isMyProject === 'yes' ? null : } + + + + + Name {userState.loginState.type !== 'LOGGED_IN' ? ( diff --git a/editor/src/components/user-bar.tsx b/editor/src/components/user-bar.tsx index 780c57e444c9..f6924edc7a35 100644 --- a/editor/src/components/user-bar.tsx +++ b/editor/src/components/user-bar.tsx @@ -64,18 +64,16 @@ export const SinglePlayerUserBar = React.memo(() => { 'SinglePlayerUserBar amIOwner', ) return ( - -
- - {amIOwner ? : null} -
-
+
+ + {amIOwner ? : null} +
) }) SinglePlayerUserBar.displayName = 'SinglePlayerUserBar' @@ -219,14 +217,12 @@ const MultiplayerUserBar = React.memo(() => { ) }), )} - - - + ) })