diff --git a/components/Conversation/ConversationTitle.tsx b/components/Conversation/ConversationTitle.tsx
index 723f99f3a..f50f3f6c1 100644
--- a/components/Conversation/ConversationTitle.tsx
+++ b/components/Conversation/ConversationTitle.tsx
@@ -125,33 +125,20 @@ export default function ConversationTitle({
}}
style={{
flexDirection: "row",
- justifyContent: "space-between",
+ justifyContent: "flex-start",
width: "100%",
alignItems: "center",
paddingRight: 40,
paddingLeft: 8,
}}
>
-
- {title}
-
{avatar ? (
) : (
@@ -165,6 +152,19 @@ export default function ConversationTitle({
}}
/>
)}
+
+ {title}
+
);
diff --git a/screens/Navigation/ConversationListNav.ios.tsx b/screens/Navigation/ConversationListNav.ios.tsx
index 1c1517caa..c9c2b56f6 100644
--- a/screens/Navigation/ConversationListNav.ios.tsx
+++ b/screens/Navigation/ConversationListNav.ios.tsx
@@ -20,7 +20,7 @@ import NewConversationButton from "../../components/ConversationList/NewConversa
import ProfileSettingsButton from "../../components/ConversationList/ProfileSettingsButton";
import { useAccountsStore, useChatStore } from "../../data/store/accountsStore";
import { useSelect } from "../../data/store/storeHelpers";
-import { headerTitleStyle, textPrimaryColor } from "../../utils/colors";
+import { textPrimaryColor } from "../../utils/colors";
import { isDesktop } from "../../utils/device";
import { getReadableProfile } from "../../utils/str";
import ConversationList from "../ConversationList";
@@ -87,9 +87,7 @@ export default function ConversationListNav() {
name="Chats"
options={({ route, navigation }) => ({
headerTitle: () =>
- shouldShowConnectingOrSyncing ? : undefined,
- headerLargeTitle: true,
- headerTitleStyle: headerTitleStyle(colorScheme),
+ shouldShowConnectingOrSyncing ? : ,
headerBackTitle: getReadableProfile(currentAccount, currentAccount),
headerRight: () => (
<>
@@ -120,7 +118,7 @@ export default function ConversationListNav() {
diff --git a/screens/Navigation/ConversationNav.tsx b/screens/Navigation/ConversationNav.tsx
index 2f70b3978..63370c8b6 100644
--- a/screens/Navigation/ConversationNav.tsx
+++ b/screens/Navigation/ConversationNav.tsx
@@ -1,4 +1,4 @@
-import { useColorScheme } from "react-native";
+import { useColorScheme, View } from "react-native";
import { TouchableOpacity } from "react-native-gesture-handler";
import Picto from "../../components/Picto/Picto";
@@ -37,17 +37,23 @@ export default function ConversationNav(
(
navigate("Chats")}
+ onPress={() => {
+ navigate("Chats");
+ }}
style={{ height: 40, justifyContent: "center", marginLeft: 8 }}
>
-
+
+
+
),
}}