diff --git a/packages/ui/app/src/components/BottomNavigationButtons.tsx b/packages/ui/app/src/components/BottomNavigationButtons.tsx index 2017bfa2cb..cd60c99c4a 100644 --- a/packages/ui/app/src/components/BottomNavigationButtons.tsx +++ b/packages/ui/app/src/components/BottomNavigationButtons.tsx @@ -1,3 +1,4 @@ +import clsx from "clsx"; import { FC } from "react"; import { BottomNavigationButton } from "./BottomNavigationButton"; @@ -12,16 +13,22 @@ export const BottomNavigationButtons: FC = ({ prev return null; } + const isGridEnabled = (prev != null && next != null) || alwaysShowGrid; + return (
{prev != null && } - {next != null && } + {next != null && ( + + )}
); };