Skip to content

Commit

Permalink
[303] fix: rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
maelchiotti committed Jan 20, 2025
1 parent 0602a26 commit 3fbb3fe
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions lib/services/migration/migration_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,15 @@ class MigrationService {
// Convert the old notes to rich text notes
final richTextNotes = oldNotes
.map(
(oldNote) => RichTextNote(
deleted: oldNote.deleted,
pinned: oldNote.pinned,
createdTime: oldNote.createdTime,
editedTime: oldNote.editedTime,
title: oldNote.title,
content: oldNote.content,
),
(oldNote) =>
RichTextNote(
deleted: oldNote.deleted,
pinned: oldNote.pinned,
createdTime: oldNote.createdTime,
editedTime: oldNote.editedTime,
title: oldNote.title,
content: oldNote.content,
),
)
.toList();

Expand Down

0 comments on commit 3fbb3fe

Please sign in to comment.