mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 17:23:09 +02:00
chore: lint
This commit is contained in:
parent
363df5b256
commit
d561aae3e5
3 changed files with 3 additions and 3 deletions
|
@ -442,7 +442,7 @@ function undoReact(note): void {
|
||||||
}
|
}
|
||||||
|
|
||||||
function undoRenote() : void {
|
function undoRenote() : void {
|
||||||
if (!renoted) return;
|
if (!renoted.value) return;
|
||||||
os.api("notes/unrenote", {
|
os.api("notes/unrenote", {
|
||||||
noteId: appearNote.id,
|
noteId: appearNote.id,
|
||||||
});
|
});
|
||||||
|
|
|
@ -481,7 +481,7 @@ function undoReact(note): void {
|
||||||
}
|
}
|
||||||
|
|
||||||
function undoRenote() : void {
|
function undoRenote() : void {
|
||||||
if (!renoted) return;
|
if (!renoted.value) return;
|
||||||
os.api("notes/unrenote", {
|
os.api("notes/unrenote", {
|
||||||
noteId: appearNote.id,
|
noteId: appearNote.id,
|
||||||
});
|
});
|
||||||
|
|
|
@ -216,7 +216,7 @@ function undoReact(note): void {
|
||||||
}
|
}
|
||||||
|
|
||||||
function undoRenote() : void {
|
function undoRenote() : void {
|
||||||
if (!renoted) return;
|
if (!renoted.value) return;
|
||||||
os.api("notes/unrenote", {
|
os.api("notes/unrenote", {
|
||||||
noteId: appearNote.id,
|
noteId: appearNote.id,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue