Fix indentation

This commit is contained in:
jaina heartles 2024-03-12 17:58:03 -07:00
parent 87c6a36823
commit 949907beb3
1 changed files with 4 additions and 4 deletions

View File

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