diff --git a/apps/ios/Shared/Views/ChatList/ChatsView.swift b/apps/ios/Shared/Views/ChatList/ChatsView.swift index 48617d5a5c..79abe4ec3e 100644 --- a/apps/ios/Shared/Views/ChatList/ChatsView.swift +++ b/apps/ios/Shared/Views/ChatList/ChatsView.swift @@ -28,20 +28,18 @@ struct ChatsView: View { } private var viewBody: some View { - ZStack { - NavStackCompat( - isActive: Binding( - get: { chatModel.chatId != nil }, - set: { _ in } - ), - destination: chatView - ) { - VStack { - if chatModel.chats.isEmpty { - onboardingButtons() - } - chatsView + NavStackCompat( + isActive: Binding( + get: { chatModel.chatId != nil }, + set: { _ in } + ), + destination: chatView + ) { + VStack { + if chatModel.chats.isEmpty { + onboardingButtons() } + chatsView } } }