diff --git a/src/app/components/elements/ReplyEditor.jsx b/src/app/components/elements/ReplyEditor.jsx index 411f0c6d75a19785a049063224e790b0dbfc6bd5..d5df483561e98cb152e9f87c89f1c77c5b748fa4 100644 --- a/src/app/components/elements/ReplyEditor.jsx +++ b/src/app/components/elements/ReplyEditor.jsx @@ -1352,7 +1352,7 @@ export default formId => const originalBody = isEdit ? originalPost.body : null; const __config = { originalBody, - comment_options: {}, + comment_options: isEdit ? null : {}, }; // Avoid changing payout option during edits #735 if (!isEdit) { @@ -1390,14 +1390,6 @@ export default formId => } } - // Used to be in the !isEdit condition above but that causes edited posts to accept unlimited payout - // despite being set to a max_accepted_payout originally. The API node will then reject the edit. - if (maxAcceptedPayout !== null && maxAcceptedPayout !== 0) { - __config.comment_options.max_accepted_payout = `${maxAcceptedPayout.toFixed( - 3 - )} HBD`; - } - const operation = { ...linkProps, category: originalPost.category || metaTags.first(),