From df7fe91af7eddcf8ccb5e71d5710f07aa73d45c5 Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Mon, 4 Dec 2023 18:37:41 +0400 Subject: [PATCH] disabled search --- apps/ios/Shared/Views/ChatList/ChatListView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/ios/Shared/Views/ChatList/ChatListView.swift b/apps/ios/Shared/Views/ChatList/ChatListView.swift index 511b56186..90408b7ac 100644 --- a/apps/ios/Shared/Views/ChatList/ChatListView.swift +++ b/apps/ios/Shared/Views/ChatList/ChatListView.swift @@ -291,6 +291,7 @@ struct ChatListSearchBar: View { HStack(spacing: 4) { Image(systemName: "magnifyingglass") TextField("Search or paste SimpleX link", text: $searchText) + .disabled(searchShowingSimplexLink) .focused($searchFocussed) .foregroundColor(searchShowingSimplexLink ? Color(uiColor: uiLinkColor) : .primary) .frame(maxWidth: .infinity)