Skip to content

Commit

Permalink
fix: remove lock option from menu
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Apr 30, 2024
1 parent 2b5226b commit d10f017
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions src/ui/pages/Menu/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,7 @@ const Menu = () => {
};

const handleItemSelection = (option: string) => {
switch (option) {
case i18n.t("menu.tab.items.lock"):
dispatch(logout());
return;
default:
return;
}
// TODO: handle menu options
};

const MenuItem = ({
Expand Down Expand Up @@ -137,18 +131,6 @@ const Menu = () => {
label={`${i18n.t("menu.tab.items.credentials")}`}
/>
</IonRow>
<IonRow className="menu-input-row">
<MenuItem
index={4}
icon={lockClosedOutline}
label={`${i18n.t("menu.tab.items.lock")}`}
/>
<MenuItem
index={5}
icon=""
label=""
/>
</IonRow>
</IonGrid>
</TabLayout>
);
Expand Down

0 comments on commit d10f017

Please sign in to comment.