diff --git a/webapp/channels/src/components/__snapshots__/textbox.test.tsx.snap b/webapp/channels/src/components/__snapshots__/textbox.test.tsx.snap
index 76494d23a5..b4eeaf6275 100644
--- a/webapp/channels/src/components/__snapshots__/textbox.test.tsx.snap
+++ b/webapp/channels/src/components/__snapshots__/textbox.test.tsx.snap
@@ -1,6 +1,136 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`components/TextBox should match snapshot with additional, optional props 1`] = `
+
+`;
+
+exports[`components/TextBox should match snapshot with required props 1`] = `
@@ -22,16 +152,9 @@ exports[`components/TextBox should match snapshot with additional, optional prop
message="some test text"
/>
-
-`;
-
-exports[`components/TextBox should match snapshot with required props 1`] = `
-
+
+
+
+
+
+
{
};
render() {
- let textboxClassName = 'form-control custom-textarea';
+ let textboxClassName = 'form-control custom-textarea textbox-edit-area';
if (this.props.emojiEnabled) {
textboxClassName += ' custom-textarea--emoji-picker';
}
@@ -274,36 +274,26 @@ export default class Textbox extends React.PureComponent {
textboxClassName += ' textarea--has-labels';
}
- if (this.props.preview) {
- return (
-
- );
- }
-
return (