From 630e95e4620ce7e2ffc648dded81de7a862afdd1 Mon Sep 17 00:00:00 2001 From: Trey t Date: Mon, 17 Nov 2025 09:39:31 -0800 Subject: [PATCH] add in profile tab --- iosApp/iosApp/MainTabView.swift | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/iosApp/iosApp/MainTabView.swift b/iosApp/iosApp/MainTabView.swift index 3ff85cc..4786677 100644 --- a/iosApp/iosApp/MainTabView.swift +++ b/iosApp/iosApp/MainTabView.swift @@ -38,13 +38,13 @@ struct MainTabView: View { } .tag(3) -// NavigationView { -// ProfileTabView() -// } -// .tabItem { -// Label("Profile", systemImage: "person.fill") -// } -// .tag(4) + NavigationView { + ProfileTabView() + } + .tabItem { + Label("Profile", systemImage: "person.fill") + } + .tag(4) } } }