Skip to content

Commit

Permalink
Fix button
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkiro committed Mar 11, 2024
1 parent 5c2c9f2 commit 4cc253f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GamePlay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ onMounted(() => {
</button>
<button @click="backspace" class="available-letter">←</button>
</div>
<button :disabled="userInput.length < 2" @submit="submitWord" class="submit-btn" type="submit">Submit</button>
<button :disabled="userInput.length < 2" @click="submitWord" class="submit-btn" type="submit">Submit</button>
</div>
</template>

Expand Down

0 comments on commit 4cc253f

Please sign in to comment.