Skip to content

Commit

Permalink
Default word.
Browse files Browse the repository at this point in the history
  • Loading branch information
FS-Frost committed Nov 28, 2023
1 parent 5444d68 commit 5eeec6d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Dictionary.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
let response: ClientResponse;
let isLoading: boolean = false;
let word: string = "";
let word: string = "water";
export let language: string = LANG_EN;
Expand Down Expand Up @@ -48,8 +48,9 @@
if (urlWord) {
word = urlWord;
searchWord();
}
searchWord();
});
async function searchWord() {
Expand Down

0 comments on commit 5eeec6d

Please sign in to comment.