diff --git a/lib/shared/dm-ops/create-thread-spec.js b/lib/shared/dm-ops/create-thread-spec.js --- a/lib/shared/dm-ops/create-thread-spec.js +++ b/lib/shared/dm-ops/create-thread-spec.js @@ -119,7 +119,7 @@ repliesCount: repliesCount ?? 0, name, avatar, - description, + description: description ?? '', containingThreadID, timestamps, }; diff --git a/native/chat/settings/thread-settings-description.react.js b/native/chat/settings/thread-settings-description.react.js --- a/native/chat/settings/thread-settings-description.react.js +++ b/native/chat/settings/thread-settings-description.react.js @@ -228,7 +228,7 @@ }; onPressEdit = () => { - this.props.setDescriptionEditValue(this.props.threadInfo.description); + this.props.setDescriptionEditValue(this.props.threadInfo.description ?? ''); }; onSubmit = () => {