Skip to content

Commit

Permalink
fix: adjust breakpoint for small screens from 1200 to 1366 (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarajohn committed Mar 13, 2024
2 parents e20d8c0 + ba0afc3 commit 93a91b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/ui/Navigation/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@ export function Navigation(props: NavigationProps) {
const theme = useTheme();
const breakpoints = useBreakpoints();
const [expanded, setExpanded] = useState(() => {
return breakpoints.des1200;
return breakpoints.des1366;
});

const match = useRouteMatch(adminNavigationURLSegment);
const orfiumProducts = useOrfiumProducts();
const { switchOrganization, organizations, selectedOrganization } = useOrganizations();

useEffect(() => {
setExpanded(breakpoints.des1200);
}, [breakpoints.des1200]);
setExpanded(breakpoints.des1366);
}, [breakpoints.des1366]);

const isDesktop = breakpoints.des1200;
const isDesktop = breakpoints.des1366;
const adminNavigationIsActive = match?.url === adminNavigationURLSegment && enableAdminMode;

return (
Expand Down
2 changes: 1 addition & 1 deletion src/ui/TopBar/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function TopBar({ utilitySection, menuItems = [] }: TopBarProps) {
const { topBarUtilitySection } = _useTopBarUtilitySection();
const theme = useTheme();
const breakpoints = useBreakpoints();
const isDesktop = breakpoints.des1200;
const isDesktop = breakpoints.des1366;

return (
<TopAppBarWrapper role="banner" aria-label="Top Application Banner">
Expand Down

0 comments on commit 93a91b9

Please sign in to comment.