Skip to content

Commit

Permalink
feat: remove arrow move in mkdir
Browse files Browse the repository at this point in the history
  • Loading branch information
halfmoon-mind committed Sep 2, 2023
1 parent ad9cfe7 commit 7265f74
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions source/component/ShopPost.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,9 @@ const ShopPost = ({userId, category, setStoreName}) => {
}

if (inputStep == 4) {
if (key.tab || key.rightArrow) {
if (key.tab) {
setFocus((focus + 1) % 2);
}
if (key.leftArrow) {
setFocus((focus - 1 + 2) % 2);
}

if (key.return) {
if (
Expand Down

0 comments on commit 7265f74

Please sign in to comment.