Minor fixes

This commit is contained in:
世界
2025-09-30 17:06:17 +08:00
parent 8a42e67060
commit 5d811d10b9
2 changed files with 6 additions and 4 deletions
@@ -147,7 +147,7 @@ public struct DashboardView: View {
message: Text(report.message()),
dismissButton: .cancel(Text("Ok")) {
Task.detached {
try await Task.sleep(nanoseconds: 300 * MSEC_PER_SEC)
try await Task.sleep(nanoseconds: 300 * NSEC_PER_MSEC)
await loopShowDeprecateNotes(reports)
}
}
@@ -159,13 +159,13 @@ public struct DashboardView: View {
primaryButton: .default(Text("Documentation")) {
openURL(URL(string: report.migrationLink)!)
Task.detached {
try await Task.sleep(nanoseconds: 300 * MSEC_PER_SEC)
try await Task.sleep(nanoseconds: 300 * NSEC_PER_MSEC)
await loopShowDeprecateNotes(reports)
}
},
secondaryButton: .cancel(Text("Ok")) {
Task.detached {
try await Task.sleep(nanoseconds: 300 * MSEC_PER_SEC)
try await Task.sleep(nanoseconds: 300 * NSEC_PER_MSEC)
await loopShowDeprecateNotes(reports)
}
}