claude feedback

This commit is contained in:
Samuel Newman
2026-05-15 22:38:02 +03:00
parent 847f739eed
commit c76bf065e6
@@ -23,6 +23,7 @@ const RIGHT_NAV_MINIMAL_WIDTH = 280
type MessageScreens = type MessageScreens =
| 'Messages' | 'Messages'
| 'MessagesConversation' | 'MessagesConversation'
| 'MessagesConversationSettings'
| 'MessagesInbox' | 'MessagesInbox'
| 'MessagesSettings' | 'MessagesSettings'
@@ -55,10 +56,11 @@ function MessagesSplitViewLayout({children, navigation, route}: LayoutProps) {
navigation.navigate('MessagesConversation', {conversation}) navigation.navigate('MessagesConversation', {conversation})
const selectedChat = const selectedChat =
route.name === 'MessagesConversation' && (route.name === 'MessagesConversation' ||
route.name === 'MessagesConversationSettings') &&
route.params && route.params &&
'conversation' in route?.params 'conversation' in route.params
? route?.params?.conversation ? route.params.conversation
: undefined : undefined
const rightNavWidth = centerColumnOffset const rightNavWidth = centerColumnOffset