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; replies.value = res;
}); });
} }
loadReplies(); loadReplies();
const quotesLoaded = ref(false); const quotesLoaded = ref(false);
function loadQuotes() { function loadQuotes() {
quotesLoaded.value = true; quotesLoaded.value = true;
os.api('notes/renotes', { os.api('notes/renotes', {
@ -679,6 +681,7 @@ function loadQuotes() {
quotes.value = res; quotes.value = res;
}); });
} }
loadQuotes(); loadQuotes();
const conversationLoaded = ref(false); const conversationLoaded = ref(false);

View file

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

View file

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