diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-02-03 12:36:32 +0100 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-02-03 12:36:32 +0100 |
commit | 801547bfa8bc1ae3949027e46045e4693454f65f (patch) | |
tree | d2657ff2ceec9add1636e0a42d88d73f629f8d16 /src/components | |
parent | 8ce00c5f3acbcde05581c0c60f2e7ed63beed264 (diff) | |
download | wordle-frontend-801547bfa8bc1ae3949027e46045e4693454f65f.tar.xz |
remove duplicate key from keyboard ^^
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Keyboard.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Keyboard.vue b/src/components/Keyboard.vue index 3b428c8..7d76dbd 100644 --- a/src/components/Keyboard.vue +++ b/src/components/Keyboard.vue @@ -20,7 +20,7 @@ let props = defineProps<{ navigate: (direction: "left" | "right" | "first" | "last") => void; }>(); -const rows = ["QWERTZUIOPÜ", "ASDFFGHJKLÖÄ", "YXCVBNMß"]; +const rows = ["QWERTZUIOPÜ", "ASDFGHJKLÖÄ", "YXCVBNMß"]; function pressButton(letter: string) { if (rows.join("").indexOf(letter) > -1) { |