Skip to content

Commit

Permalink
Merge pull request #21 from KoninMikhail/developer
Browse files Browse the repository at this point in the history
Developer
  • Loading branch information
KoninMikhail authored Sep 10, 2024
2 parents 3c931ad + 40bbbfc commit 37ad215
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const { NavbarMobile } = widgetNavbarMobileUi;
const { SearchQueryInputModal } = widgetSearchQueryPopupUi;
const { MyDeliveriesRow } = widgetMyDeliveriesUi;

const { DELIVERIES, PROFILE_EDIT_PAGE, SETTINGS_PAGE } = RouteName;
const { PROFILE_EDIT_PAGE, SETTINGS_PAGE } = RouteName;

/**
* Layout
Expand Down Expand Up @@ -176,7 +176,6 @@ const Header: FunctionComponent = () => {

const UpcomingDeliveriesSection: FunctionComponent<PropsWithChildren> = memo(
({ children }) => {
const navigate = useNavigate();
const { t } = useTranslation(translationNS);

return (
Expand All @@ -197,7 +196,7 @@ const MarketDeliveriesSection: FunctionComponent = () => {
<SectionHead>
<Heading>{t(MARKET_LABEL)}</Heading>
</SectionHead>
<Spacer y={2} />
<Spacer y={4} />
<MarketDateSelector typePicker="scroll" />
<Spacer y={2} />
<MarketFilterScrollable withOutPadding />
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/layout/navbar-mobile/ui/ui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const { isEmpty } = sharedLibTypeGuards;
const NavbarContainer: FunctionComponent<PropsWithChildren> = ({
children,
}) => (
<div className="fixed bottom-0 left-0 right-0 z-30 w-full rounded-t-3xl border-[1px] border-b-0 border-gray-100 bg-background p-1.5 shadow-2xl ring-default dark:border-default-50">
<div className="fixed bottom-0 left-0 right-0 z-[100] w-full rounded-t-3xl border-[1px] border-b-0 border-gray-100 bg-background p-1.5 shadow-2xl ring-default dark:border-default-50">
<div className="mx-auto w-full lg:w-[750px]">{children}</div>
</div>
);
Expand Down

0 comments on commit 37ad215

Please sign in to comment.