Skip to content

Commit

Permalink
🐛 Small fix to make sure the tasks actually are displayed
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Friese <[email protected]>
  • Loading branch information
peterfriese committed Nov 12, 2021
1 parent 2d77c64 commit e9dfb1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct TasksListView: View {
}
}
}
.emptyState(!$viewModel.tasks.isEmpty) {
.emptyState($viewModel.tasks.isEmpty) {
Text("No Reminders")
.font(.title3)
.foregroundColor(Color.secondary)
Expand Down

0 comments on commit e9dfb1f

Please sign in to comment.