How to get rid of Type of expression is ambiguous

var body: some View {
    List(sandwiches) { sandwich in
      Image(sandwich.thumbnailName)

      VStack(alignment: .leading) {
        Text(.sandwich.name)
        Text("\(sandwich.ingredientCount) ingredients")
          .font(.subheadline)
          .foregroundColor(.secondary)
      }
List is where error is, how do I get rid of it
How to get rid of Type of expression is ambiguous
 
 
Q