SF Symbols 3 Bug

I am currently using the latest Mac OS beta, Xcode 13, and iOS 15.

For some reason whenever I add an sf symbol into my app it puts the fill version of the symbol no matter what I do I can't change it. I've tried creating a custom icon that looks identical through the sf symbols app but nothing is being rendered.

no matter what I do I can't change it

Could you show what you try to change it ?

`struct ViewsContainer: View {

    @State var currentView = "Feed"

    @EnvironmentObject private var session:SessionStore

    var body: some View {

        VStack {

            TabView() {//TabView

                

                //MARK: Feed

                Feed(finishedLoading: $session.finishedLoading).tabItem {

                    Label("Feed", systemImage: "house")

                }.zIndex(1)

                //End Feed

                 

                //MARK: Crew

                Crew().tabItem {

                    Label("Crew", systemImage: "person.3")

                }.zIndex(1)

                //End Crew

                

                //MARK: MapView

                MapView().tabItem {

                    Label("Map", systemImage: "map")

                }.zIndex(1)

                //End Map

                

                //MARK: Fitness

                Fitness().tabItem {

                    Label("Fitness", systemImage: "figure.walk.circle")

                }.zIndex(1)

                //End Fitness

                

                //MARK: Settings

                Profile().tabItem {

                    Label("Profile", systemImage: "person").symbolRenderingMode(.monochrome)

                }.zIndex(1)

                //End Settings

                

                

            }// End of TabView

            .accentColor(Color("PrimaryColor"))

            .zIndex(1)

        }// End of VStack

    }// End of body

}`

SF Symbols 3 Bug
 
 
Q