chore: lint
This commit is contained in:
parent
4dd23a3793
commit
cca9ea3126
3 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||||
|
|
|
@ -64,6 +64,7 @@ function onSignup(res) {
|
||||||
function onSignupEmailPending() {
|
function onSignupEmailPending() {
|
||||||
dialog.close();
|
dialog.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
function onApprovalPending() {
|
function onApprovalPending() {
|
||||||
dialog.close();
|
dialog.close();
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,7 @@ function getReason() {
|
||||||
email = info?.email;
|
email = info?.email;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
getReason();
|
getReason();
|
||||||
|
|
||||||
const emits = defineEmits<{
|
const emits = defineEmits<{
|
||||||
|
|
Loading…
Reference in a new issue