We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85e2824 commit 1f944b2Copy full SHA for 1f944b2
Sources/TranscriptDebugMenu/TranscriptDebugMenu.swift
@@ -90,7 +90,7 @@ public struct TranscriptDebugMenu: View {
90
}
91
92
.navigationTitle("Transcript")
93
- #if !visionOS
+ #if !os(visionOS)
94
.navigationSubtitle("~\(session.transcript.tokensCount) token" + (session.transcript.tokensCount == 1 ? "" : "s"))
95
#endif
96
.navigationDestination(for: Transcript.Entry.self) { entry in
Sources/TranscriptDebugMenu/TranscriptEntryDetailView.swift
@@ -14,7 +14,7 @@ struct TranscriptEntryDetailView: View {
14
content
15
16
.navigationTitle(title)
17
18
.navigationSubtitle("~\(entry.tokensCount) token" + (entry.tokensCount == 1 ? "" : "s"))
19
20
.toolbar {
0 commit comments