diff --git a/packages/frontend/src/pages/reversi/game.board.vue b/packages/frontend/src/pages/reversi/game.board.vue
index 4dcc5043f4..50910b8649 100644
--- a/packages/frontend/src/pages/reversi/game.board.vue
+++ b/packages/frontend/src/pages/reversi/game.board.vue
@@ -142,7 +142,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ i18n.ts.options }}
Show labels
- Show reactions
+ Show reaction
useAvatarAsStone
@@ -189,7 +189,7 @@ const props = defineProps<{
}>();
const showBoardLabels = ref(false);
-const showReactions = ref(true);
+const showReaction = ref(true);
const useAvatarAsStone = ref(true);
const autoplaying = ref(false);
// eslint-disable-next-line vue/no-setup-props-destructure
@@ -540,7 +540,7 @@ function sendReaction(emojiKey: string) {
function onReacted(payload: Parameters['0']) {
const { userId, reaction } = payload;
- if (showReactions.value || userId === $i.id) {
+ if (showReaction.value || userId === $i.id) {
sound.playMisskeySfx('reaction');
const el = (userId === blackUser.value.id) ? blackUserEl.value : whiteUserEl.value;