From d92a1a4ae382ca1607a6cd7d380b0a5aa1b20d89 Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Wed, 1 May 2024 20:09:06 +0400 Subject: [PATCH] wip --- .../ios/Shared/Views/ChatList/ChatsView.swift | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) 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 } } }