UI Tab Bar

Anyone else get these warnings when using UI Tab Bar in visionOS? Are these detrimental to pushing my visionOS app to the App Review Team?

import SwiftUI import UIKit

struct HomeScreenWrapper: UIViewControllerRepresentable {

func makeUIViewController(context: Context) -> UITabBarController {
    let tabBarController = UITabBarController()

    // Home View Controller
    let homeVC = UIHostingController(rootView: HomeScreen())
    homeVC.tabBarItem = UITabBarItem(title: "Home", image: UIImage(systemName: "house"), tag: 0)

    // Brands View Controller
    let brandsVC = UIHostingController(rootView: BrandSelection())
    brandsVC.tabBarItem = UITabBarItem(title: "Brands", image: UIImage(systemName: "bag"), tag: 1)

    tabBarController.viewControllers = [homeVC, brandsVC]
    return tabBarController
}

func updateUIViewController(_ uiViewController: UITabBarController, context: Context) {
    // Update the UI if needed
}

}

struct HomeScreenWrapper_Previews: PreviewProvider { static var previews: some View { HomeScreenWrapper() } }

UI Tab Bar
 
 
Q