From 1edf5bc83c0dcc07246908af341f37e2c871edd7 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 13 May 2026 12:47:16 -0500 Subject: Add v4.4 audit mode sessions and export workflow --- DomainDig/RootTabView.swift | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'DomainDig/RootTabView.swift') diff --git a/DomainDig/RootTabView.swift b/DomainDig/RootTabView.swift index cba1062..524e8e9 100644 --- a/DomainDig/RootTabView.swift +++ b/DomainDig/RootTabView.swift @@ -4,6 +4,7 @@ private enum RootTab: Hashable { case dashboard case history case inspect + case audit case settings } @@ -38,6 +39,14 @@ struct RootTabView: View { } .tag(RootTab.inspect) + NavigationStack { + AuditModeView(viewModel: viewModel) + } + .tabItem { + Label("Audit", systemImage: "checklist") + } + .tag(RootTab.audit) + NavigationStack { SettingsView(viewModel: viewModel) } -- cgit v1.2.3