From 10f1e5e9249237ac269d70dec5df79a97da98312 Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Thu, 22 Aug 2024 22:05:24 +0400 Subject: [PATCH] layout --- apps/ios/Shared/Views/NewChat/NewChatView.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/ios/Shared/Views/NewChat/NewChatView.swift b/apps/ios/Shared/Views/NewChat/NewChatView.swift index 2969aa86df..61e3c824a8 100644 --- a/apps/ios/Shared/Views/NewChat/NewChatView.swift +++ b/apps/ios/Shared/Views/NewChat/NewChatView.swift @@ -502,18 +502,18 @@ private struct ActiveProfilePicker: View { incognitoProfileImage() Text("Incognito") .foregroundColor(theme.colors.onBackground) - Image(systemName: "info.circle") - .foregroundColor(theme.colors.primary) - .font(.system(size: 14)) - .onTapGesture { - showIncognitoSheet = true - } Spacer() if incognitoEnabled { Image(systemName: "checkmark") .resizable().scaledToFit().frame(width: 16) .foregroundColor(theme.colors.primary) } + Image(systemName: "info.circle") + .foregroundColor(theme.colors.primary) + .font(.system(size: 14)) + .onTapGesture { + showIncognitoSheet = true + } } } let filteredProfiles = filteredProfiles()