1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-07 03:50:08 +02:00

👌 Handle TODOs

This commit is contained in:
2023-01-07 13:03:27 +01:00
parent f153fee05c
commit 27894e4884
2 changed files with 4 additions and 6 deletions

View File

@ -187,7 +187,7 @@ class Valet {
// 3. Notify user if the version is too high
if version.major > 4 {
// TODO:
// TODO: Notify user if the version is too high
}
}

View File

@ -80,12 +80,10 @@ struct WarningListView_Previews: PreviewProvider {
static var previews: some View {
WarningListView(empty: true)
.frame(width: 600, height: 480)
.previewDisplayName("Empty List")
/*
WarningListView()
// TODO: Figure out how the empty() only applies to this single instance
// .empty()
WarningListView(empty: false)
.frame(width: 600, height: 480)
*/
.previewDisplayName("List With All Warnings")
}
}