Fix indentation

This commit is contained in:
jaina heartles 2024-03-12 17:58:03 -07:00
parent 87c6a36823
commit 949907beb3

View file

@ -60,11 +60,11 @@ export class AutoDeleteNotesProcessorService {
.getMany(); .getMany();
for (const note of notes) { for (const note of notes) {
if (pinnedNoteIds.includes(note.id)) { if (pinnedNoteIds.includes(note.id)) {
continue; continue;
} }
await this.noteDeleteService.delete(user, note); await this.noteDeleteService.delete(user, note);
} }
} }