Grateful Moments Swift tutorial missing NavigationStack

hello. I was going through the Swift tutorial and am seeing that the code for MomentsViews.swift is showing as

                    .sheet(isPresented: $showCreateMoment) {
                            MomentEntryView()
                    }

but this makes the navigation title and toolbar not render.

ChatGPT recommended this instead:

                    .sheet(isPresented: $showCreateMoment) {
                        NavigationStack {
                            MomentEntryView()
                        }
                    }

will the tutorial need to be updated or am I missing something elsewhere?

Grateful Moments Swift tutorial missing NavigationStack
 
 
Q