@@ -233,7 +233,7 @@
if (threadType === undefined) {
this.setState(
{
- errorMessage: 'thread type unspecified',
+ errorMessage: 'chat type unspecified',
},
() => {
invariant(this.openPrivacyInput, 'openPrivacyInput ref unset');
@@ -257,7 +257,7 @@
threadType === 4 ||
threadType === 6 ||
threadType === 7,
- "Sidebars and communities can't be created from the thread composer",
+ "Sidebars and communities can't be created from the chat composer",
);
const query = this.props.calendarQuery();
const response = await this.props.newThread({
@@ -296,10 +296,7 @@
const parentThreadInfo: ?ThreadInfo = useSelector(state =>
parentThreadID ? threadInfoSelector(state)[parentThreadID] : null,
);
- invariant(
- !parentThreadID || parentThreadInfo,
- 'parent thread should exist',
- );
+ invariant(!parentThreadID || parentThreadInfo, 'parent chat should exist');
const inputDisabled = useSelector(loadingStatusSelector) === 'loading';
const calendarQuery = useSelector(nonThreadCalendarQuery);
const callNewThread = useServerCall(newThread);
diff --git a/web/modals/threads/settings/thread-settings-delete-tab.react.js b/web/modals/threads/settings/thread-settings-delete-tab.react.js
--- a/web/modals/threads/settings/thread-settings-delete-tab.react.js
+++ b/web/modals/threads/settings/thread-settings-delete-tab.react.js
@@ -87,7 +87,7 @@
- Your thread will be permanently deleted. There is no way to reverse
+ Your chat will be permanently deleted. There is no way to reverse
this.
diff --git a/web/modals/threads/settings/thread-settings-general-tab.react.js b/web/modals/threads/settings/thread-settings-general-tab.react.js
--- a/web/modals/threads/settings/thread-settings-general-tab.react.js
+++ b/web/modals/threads/settings/thread-settings-general-tab.react.js
@@ -147,7 +147,7 @@
return (