diff --git a/ui/component/publishForm/view.jsx b/ui/component/publishForm/view.jsx index aff0f943f..d34788b86 100644 --- a/ui/component/publishForm/view.jsx +++ b/ui/component/publishForm/view.jsx @@ -202,6 +202,13 @@ function PublishForm(props: Props) { } } + // if you enter the page and it is stuck in publishing, "stop it." + useEffect(() => { + if (publishing) { + clearPublish(); + } + }, []); + useEffect(() => { if (!thumbnail) { resetThumbnailStatus();