popover not closing

When I Press the save button the popover does not close

Code

        .popover(isPresented: $showingPopover) {

            NavigationView {

                ModifyRecipeView(recipe: $recipe)

                    .toolbar {

                        ToolbarItem(placement: .navigationBarTrailing) {

                            Button("Save") {

                                showingPopover = false

                            }

                        }

                    }

                    .navigationTitle("Edit Recipe")

            }

            .onDisappear {

                recipeData.saveRecipes()

            }

        }
popover not closing
 
 
Q