Remove call to nonexistent var on word submit for upload

This commit is contained in:
Robbie Antenesse 2019-08-22 14:23:59 -06:00
parent abb8511999
commit f39dd886b1
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ export function submitWordForm() {
addWord(word);
sortWords(true);
if (upload && hasToken()) {
if (hasToken()) {
import('./account/index.js').then(account => {
account.uploadWord(word);
});