chore: lint

This commit is contained in:
Mar0xy 2023-10-31 19:57:52 +01:00
parent 4dd23a3793
commit cca9ea3126
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
3 changed files with 5 additions and 0 deletions

View file

@ -666,9 +666,11 @@ function loadReplies() {
replies.value = res;
});
}
loadReplies();
const quotesLoaded = ref(false);
function loadQuotes() {
quotesLoaded.value = true;
os.api('notes/renotes', {
@ -679,6 +681,7 @@ function loadQuotes() {
quotes.value = res;
});
}
loadQuotes();
const conversationLoaded = ref(false);

View file

@ -64,6 +64,7 @@ function onSignup(res) {
function onSignupEmailPending() {
dialog.close();
}
function onApprovalPending() {
dialog.close();
}

View file

@ -48,6 +48,7 @@ function getReason() {
email = info?.email;
});
}
getReason();
const emits = defineEmits<{