diff --git a/store/governance/gov.js b/store/governance/gov.js index 933d6df..9d21618 100644 --- a/store/governance/gov.js +++ b/store/governance/gov.js @@ -688,6 +688,13 @@ const actions = { } } + if (text.includes(`'`)) { + text = text.replaceAll(`'`, `"`) + } + if (text.includes(`" "`)) { + text = text.replace(`" "`, `", "`) + } + let title, description, rest try { ;({ title, description } = JSON.parse(text))