Skip to content

Commit

Permalink
Adds step 5 - dots connecting UI to domain
Browse files Browse the repository at this point in the history
  • Loading branch information
aldefy committed Jun 30, 2024
1 parent 6b4c307 commit 24a3df1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion composeApp/src/commonMain/kotlin/app/academy/model/Note.kt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ val dummyNotes = listOf(

/**
* Used to convert a [SavedNoteEntity] to a [Note].
*/
fun SavedNoteEntity.toNote(): Note {
return Note(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object HomeScreen : Screen {
@Composable
override fun Content() {
LazyColumn(Modifier.fillMaxSize()) {
NoteItems(dummyNotes, onClick = {}) {
NoteItems(emptyList(), onClick = {}) {
//onDismissed
}
}
Expand Down

0 comments on commit 24a3df1

Please sign in to comment.