diff --git a/app/home/(user)/_components/home-menu-navigation.tsx b/app/home/(user)/_components/home-menu-navigation.tsx index d7751a3..fce240b 100644 --- a/app/home/(user)/_components/home-menu-navigation.tsx +++ b/app/home/(user)/_components/home-menu-navigation.tsx @@ -26,13 +26,6 @@ export async function HomeMenuNavigation(props: { const balanceSummary = workspace?.id ? await getAccountBalanceSummary(workspace.id) : null; - const totalValue = props.cart?.total - ? formatCurrency({ - currencyCode: props.cart.currency_code, - locale: language, - value: props.cart.total, - }) - : 0; const cartQuantityTotal = props.cart?.items?.reduce((acc, item) => acc + item.quantity, 0) ?? 0; diff --git a/app/home/(user)/_components/home-mobile-navigation.tsx b/app/home/(user)/_components/home-mobile-navigation.tsx index 892ebd7..c399381 100644 --- a/app/home/(user)/_components/home-mobile-navigation.tsx +++ b/app/home/(user)/_components/home-mobile-navigation.tsx @@ -25,6 +25,7 @@ import { DropdownMenuTrigger, } from '@kit/ui/dropdown-menu'; import { If } from '@kit/ui/if'; +import { Button } from '@kit/ui/shadcn/button'; import { Trans } from '@kit/ui/trans'; // home imports @@ -85,10 +86,28 @@ export function HomeMobileNavigation(props: { return ( - - - - +
+ + + + + + +