Remove the avi from the compose prompt

This commit is contained in:
Paul Frazee 2023-01-16 17:37:18 -06:00
parent dac9bc24d1
commit 11c861d2d3
3 changed files with 12 additions and 26 deletions

View file

@ -39,7 +39,9 @@ export const Feed = observer(function Feed({
// like PureComponent, shouldComponentUpdate, etc
const renderItem = ({item}: {item: any}) => {
if (item === COMPOSE_PROMPT_ITEM) {
return <ComposePrompt onPressCompose={onPressCompose} />
return (
<ComposePrompt onPressCompose={onPressCompose} text="New message" />
)
} else if (item === EMPTY_FEED_ITEM) {
return (
<EmptyState