Thread 1: EXC_BAD_ACCESS (code=2, address=0x7ff7b3bd5f90)

Greetings! I am making a small application according to the official tutorial from Apple, and I encountered such an error. Please help me solve this problem

Error in @main

Code


import SwiftUI

@main

struct MeetUpApp: App {

    @State private var scrums = DailyScrum.sampleData

    var body: some Scene {

        WindowGroup {

            NavigationView {

                ScrumsView(scrums: $scrums)

            }

        }

    }

}
Thread 1: EXC_BAD_ACCESS (code=2, address=0x7ff7b3bd5f90)
 
 
Q