Everytime when I dismiss my action sheet, it goes back to the very beginning. Dismiss button below:
Button{
showingSheet.toggle()
}label: {
HStack {
Text("At the movies")
Spacer()
}
.padding()
.background(Color(colorScheme == .dark ?
.tertiarySystemBackground: .white))
}
.sheet(isPresented: $showingSheet) {
StatusSelectorView()
}
}