Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Studio: fix setting menu not open if no sites
  • Loading branch information
kozer committed Jul 4, 2024
commit 8cdba40bfce66b1965b13f4fa90e93dc4f849728
2 changes: 2 additions & 0 deletions src/components/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import MainSidebar from './main-sidebar';
import Onboarding from './onboarding';
import { SiteContentTabs } from './site-content-tabs';
import WindowsTitlebar from './windows-titlebar';
import UserSettings from './user-settings';

export default function App() {
useLocalizationSupport();
Expand Down Expand Up @@ -45,6 +46,7 @@ export default function App() {
>
<SiteContentTabs />
</main>
<UserSettings />
Comment thread
kozer marked this conversation as resolved.
Outdated
</HStack>
</VStack>
);
Expand Down
2 changes: 0 additions & 2 deletions src/components/main-sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import offlineIcon from './offline-icon';
import { RunningSites } from './running-sites';
import SiteMenu from './site-menu';
import Tooltip from './tooltip';
import UserSettings from './user-settings';
import { WordPressLogo } from './wordpress-logo';

interface MainSidebarProps {
Expand Down Expand Up @@ -143,7 +142,6 @@ export default function MainSidebar( { className }: MainSidebarProps ) {
<div className="mb-[6px]">
<SidebarAuthFooter />
</div>
<UserSettings />
</div>
</div>
</div>
Expand Down