diff --git a/ui/component/publishForm/view.jsx b/ui/component/publishForm/view.jsx index 1bd0041a6..7034c6450 100644 --- a/ui/component/publishForm/view.jsx +++ b/ui/component/publishForm/view.jsx @@ -201,6 +201,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();