Remove the avi from the compose prompt
This commit is contained in:
parent
dac9bc24d1
commit
11c861d2d3
3 changed files with 12 additions and 26 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue