Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed Nov 4, 2019
1 parent 6092fc7 commit 1f50a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/component/src/BasicWebChat.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function createAttachmentRenderer(additionalMiddleware) {
const BasicWebChat = ({ activityMiddleware, attachmentMiddleware, className, ...otherProps }) => {
const sendBoxRef = useRef();
const activityRenderer = useMemo(() => createActivityRenderer(activityMiddleware), [activityMiddleware]);
const attachmentMiddleware = useMemo(() => createAttachmentRenderer(attachmentMiddleware), [attachmentMiddleware]);
const attachmentRenderer = useMemo(() => createAttachmentRenderer(attachmentMiddleware), [attachmentMiddleware]);

// TODO: [P2] Implement "scrollToBottom" feature

Expand Down

0 comments on commit 1f50a59

Please sign in to comment.