diff --git a/src/components/Views/EditView/EditView.tsx b/src/components/Views/EditView/EditView.tsx index 0fe97eaf..625d3a59 100644 --- a/src/components/Views/EditView/EditView.tsx +++ b/src/components/Views/EditView/EditView.tsx @@ -187,7 +187,8 @@ export const EditView = (props: Props) => { const autoSave = async () => { const hasChanges = !deepEqual(form, prevForm) const hasTopic = Boolean(form.mainTopic) - if (hasChanges && hasTopic) { + if (hasChanges || hasTopic) { + console.debug('[EditView.autoSave] shout has topic') setSaving(true) if (props.shout?.published_at) { saveDraftToLocalStorage(form)