chore: lint

This commit is contained in:
Mar0xy 2023-10-13 21:54:57 +02:00
parent 363df5b256
commit d561aae3e5
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
3 changed files with 3 additions and 3 deletions

View file

@ -442,7 +442,7 @@ function undoReact(note): void {
}
function undoRenote() : void {
if (!renoted) return;
if (!renoted.value) return;
os.api("notes/unrenote", {
noteId: appearNote.id,
});

View file

@ -481,7 +481,7 @@ function undoReact(note): void {
}
function undoRenote() : void {
if (!renoted) return;
if (!renoted.value) return;
os.api("notes/unrenote", {
noteId: appearNote.id,
});

View file

@ -216,7 +216,7 @@ function undoReact(note): void {
}
function undoRenote() : void {
if (!renoted) return;
if (!renoted.value) return;
os.api("notes/unrenote", {
noteId: appearNote.id,
});