diff --git a/apps/web/app/home/(user)/_components/home-menu-navigation.tsx b/apps/web/app/home/(user)/_components/home-menu-navigation.tsx
index 68978ee4f..d91e4981c 100644
--- a/apps/web/app/home/(user)/_components/home-menu-navigation.tsx
+++ b/apps/web/app/home/(user)/_components/home-menu-navigation.tsx
@@ -49,13 +49,19 @@ export function HomeMenuNavigation(props: { workspace: UserWorkspace }) {
);
diff --git a/apps/web/app/home/[account]/_components/team-account-navigation-menu.tsx b/apps/web/app/home/[account]/_components/team-account-navigation-menu.tsx
index dbe71bf00..5c7db1833 100644
--- a/apps/web/app/home/[account]/_components/team-account-navigation-menu.tsx
+++ b/apps/web/app/home/[account]/_components/team-account-navigation-menu.tsx
@@ -48,7 +48,9 @@ export function TeamAccountNavigationMenu(props: {
-
);
diff --git a/apps/web/components/personal-account-dropdown-container.tsx b/apps/web/components/personal-account-dropdown-container.tsx
index 07db9552f..50b28bcc2 100644
--- a/apps/web/components/personal-account-dropdown-container.tsx
+++ b/apps/web/components/personal-account-dropdown-container.tsx
@@ -19,6 +19,7 @@ const features = {
export function ProfileAccountDropdownContainer(props: {
user?: User;
+ showProfileName?: boolean;
account?: {
id: string | null;
@@ -42,6 +43,7 @@ export function ProfileAccountDropdownContainer(props: {
user={userData}
account={props.account}
signOutRequested={() => signOut.mutateAsync()}
+ showProfileName={props.showProfileName}
/>
);
}
diff --git a/packages/ui/src/hooks/use-mobile.tsx b/packages/ui/src/hooks/use-mobile.tsx
index 821f8ff4a..a5d406126 100644
--- a/packages/ui/src/hooks/use-mobile.tsx
+++ b/packages/ui/src/hooks/use-mobile.tsx
@@ -1,6 +1,6 @@
import * as React from 'react';
-const MOBILE_BREAKPOINT = 768;
+const MOBILE_BREAKPOINT = 1024;
export function useIsMobile() {
const [isMobile, setIsMobile] = React.useState(
diff --git a/packages/ui/src/makerkit/navigation-config.schema.ts b/packages/ui/src/makerkit/navigation-config.schema.ts
index 37082d8a8..e710320bf 100644
--- a/packages/ui/src/makerkit/navigation-config.schema.ts
+++ b/packages/ui/src/makerkit/navigation-config.schema.ts
@@ -37,7 +37,7 @@ const RouteGroup = z.object({
});
export const NavigationConfigSchema = z.object({
- style: z.enum(['custom', 'sidebar', 'header']).default('sidebar'),
+ style: z.enum(['custom', 'sidebar', 'header']).default('header'),
sidebarCollapsed: z
.enum(['false', 'true'])
.default('false')
diff --git a/packages/ui/src/makerkit/page.tsx b/packages/ui/src/makerkit/page.tsx
index fa2c4e680..00812cd1a 100644
--- a/packages/ui/src/makerkit/page.tsx
+++ b/packages/ui/src/makerkit/page.tsx
@@ -114,7 +114,7 @@ export function PageBody(
export function PageNavigation(props: React.PropsWithChildren) {
return (
- {props.children}
+ {props.children}
);
}