diff --git a/native/chat/thread-list-modal.react.js b/native/chat/thread-list-modal.react.js --- a/native/chat/thread-list-modal.react.js +++ b/native/chat/thread-list-modal.react.js @@ -18,6 +18,7 @@ import Modal from '../components/modal.react'; import Search from '../components/search.react'; import SWMansionIcon from '../components/swmansion-icon.react'; +import ThreadPill from '../components/thread-pill.react'; import { useIndicatorStyle, useStyles } from '../themes/colors'; import { waitForModalInputFocus } from '../utils/timers'; import { useNavigateToThread } from './message-list-types'; @@ -52,6 +53,7 @@ props: Props, ): React.Node { const { + threadInfo: parentThreadInfo, searchState, setSearchState, onChangeSearchInputText, @@ -103,17 +105,22 @@ return ( - {modalTitle} - - - + + {modalTitle} + + + + + + + ; @@ -187,6 +188,7 @@ subthreadsModalClose: '#808080', subthreadsModalBackgroud: '#1F1F1F', subthreadsModalSearch: 'rgba(255, 255, 255, 0.04)', + subthreadsModalParentName: '#0A0A0A', }); const colors = { light, dark };