diff --git a/enzevalos_iphone/SwiftUI/Inbox/Inbox.swift b/enzevalos_iphone/SwiftUI/Inbox/Inbox.swift
index 5920a378b76ed7ac118dbb44177994e94c63c28f..9a35defc83480fc689c282dd69598ce047646c94 100644
--- a/enzevalos_iphone/SwiftUI/Inbox/Inbox.swift
+++ b/enzevalos_iphone/SwiftUI/Inbox/Inbox.swift
@@ -43,11 +43,9 @@ struct Inbox: View {
     }
     
     private var mailList: some View {
-        List {
-           ForEach(self.keyrecords.filter(filterKeyRecord), id: \.self){
-               record in
-                   KeyRecordRow(keyrecord: record, coord: self.coord)
-           }
+        List (self.keyrecords.filter(filterKeyRecord), id: \.self){
+            record in
+                KeyRecordRow(keyrecord: record, coord: self.coord)
        }
        .resignKeyboardOnDragGesture() // hide keyboard when dragging
     }