We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 485ebc8 commit dfcdab7Copy full SHA for dfcdab7
src/repository/storage/postgres/orm/sequelize/note.ts
@@ -399,7 +399,6 @@ export default class NoteSequelizeStorage {
399
const notes = result as NoteRow[];
400
401
const notesMap = new Map<NoteInternalId, NoteTree>();
402
- const publicIdMap = new Map<NoteInternalId, NotePublicId>(); // Internal to Public ID lookup
403
404
let root: NoteTree | null = null;
405
@@ -410,8 +409,6 @@ export default class NoteSequelizeStorage {
410
409
content: note.content,
411
childNotes: [],
412
});
413
-
414
- publicIdMap.set(note.noteid, note.public_id);
415
416
417
// Step 2: Build hierarchy
0 commit comments