diff --git a/app/src/card/openCard.ts b/app/src/card/openCard.ts index 6e53c129b..247dd6a33 100644 --- a/app/src/card/openCard.ts +++ b/app/src/card/openCard.ts @@ -105,12 +105,20 @@ export const genCardHTML = (options: { ${!isMobile() ? "(p / q)" : ""} - + + +
- @@ -704,7 +712,7 @@ export const bindCardEvent = async (options: { } return; } - if (["1", "2", "3", "4", "-3"].includes(type) && actionElements[0].classList.contains("fn__none")) { + if ("-3" === type || (["1", "2", "3", "4"].includes(type) && actionElements[0].classList.contains("fn__none"))) { fetchPost(type === "-3" ? "/api/riff/skipReviewRiffCard" : "/api/riff/reviewRiffCard", { deckID: currentCard.deckID, cardID: currentCard.cardID,