Skip to content

Commit

Permalink
handle conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
cretadn22 committed Jul 17, 2024
1 parent 0b777f1 commit cff0655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PopoverMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ function PopoverMenu({
onPress={() => {
setCurrentMenuItems(previousMenuItems);
setFocusedIndex(-1);
setEnteredSubMenuIndexes(enteredSubMenuIndexes.slice(0, -1));
setEnteredSubMenuIndexes((prevState) => prevState.slice(0, -1))
}}
/>
);
Expand Down

0 comments on commit cff0655

Please sign in to comment.