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;
|
||||
});
|
||||
}
|
||||
|
||||
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);
|
||||
|
|
|
@ -64,6 +64,7 @@ function onSignup(res) {
|
|||
function onSignupEmailPending() {
|
||||
dialog.close();
|
||||
}
|
||||
|
||||
function onApprovalPending() {
|
||||
dialog.close();
|
||||
}
|
||||
|
|
|
@ -48,6 +48,7 @@ function getReason() {
|
|||
email = info?.email;
|
||||
});
|
||||
}
|
||||
|
||||
getReason();
|
||||
|
||||
const emits = defineEmits<{
|
||||
|
|
Loading…
Reference in a new issue