Skip to content

Commit

Permalink
feat: remove last hotel button - fix #250 (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
pagoru authored Jan 22, 2025
1 parent af7e46b commit 50ac2a2
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import React from "react";
import { useRedirect } from "shared/hooks";
import { HotelIconComponent, NavItemComponent } from "@oh/components";

export const HomeNavigatorComponent: React.FC = () => {
const { navigate } = useRedirect();
// const { navigate } = useRedirect();

return (
<>
<NavItemComponent onClick={navigate} icon={<HotelIconComponent />}>
Last Hotel
</NavItemComponent>
{/*<NavItemComponent onClick={navigate} icon={<HotelIconComponent />}>*/}
{/* Last Hotel*/}
{/*</NavItemComponent>*/}
</>
);
};

0 comments on commit 50ac2a2

Please sign in to comment.