Skip to content

Commit

Permalink
fix(channel-web): wrong intl id (#4369)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentlp committed Jan 13, 2021
1 parent b2f13de commit 556f4e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/channel-web/src/views/lite/components/Composer.tsx
Expand Up @@ -68,7 +68,7 @@ class Composer extends React.Component<ComposerProps> {
const placeholder =
this.props.composerPlaceholder ||
this.props.intl.formatMessage({
id: this.isLastMessageFromBot() ? 'placeholder' : 'composer.placeholderInit' }, { name: this.props.botName })
id: this.isLastMessageFromBot() ? 'composer.placeholder' : 'composer.placeholderInit' }, { name: this.props.botName })

return (
<div role="region" className={'bpw-composer'}>
Expand Down

0 comments on commit 556f4e8

Please sign in to comment.