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 2721f7d commit 85e2824Copy full SHA for 85e2824
Sources/TranscriptDebugMenu/TranscriptDebugMenu.swift
@@ -90,7 +90,9 @@ public struct TranscriptDebugMenu: View {
90
}
91
92
.navigationTitle("Transcript")
93
+ #if !visionOS
94
.navigationSubtitle("~\(session.transcript.tokensCount) token" + (session.transcript.tokensCount == 1 ? "" : "s"))
95
+ #endif
96
.navigationDestination(for: Transcript.Entry.self) { entry in
97
TranscriptEntryDetailView(entry: entry)
98
Sources/TranscriptDebugMenu/TranscriptEntryDetailView.swift
@@ -14,7 +14,9 @@ struct TranscriptEntryDetailView: View {
14
content
15
16
.navigationTitle(title)
17
18
.navigationSubtitle("~\(entry.tokensCount) token" + (entry.tokensCount == 1 ? "" : "s"))
19
20
.toolbar {
21
ToolbarItem {
22
Button("Copy") {
0 commit comments