Skip to content

Commit

Permalink
test: console.log value to see where error is coming from
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan-LukeKlopper committed Jun 6, 2024
1 parent d084704 commit e5c4c3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/ProposalDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ function ProposalDetails(props) {
}
};

const parsedDescription = parse(
const parsedDescription = "hi"

console.log("parsedDescription :", parse(
micromark(fixDescription, { extensions: [gfm()], htmlExtensions: [gfmHtml()] }),
{ replace: transformElement }
);
))

console.log("parsedDescription :", parsedDescription)

useEffect(() => {
if(props.address !== props.wallet?.address && props.granters.includes(props.address)){
setGranter(props.address)
Expand Down

0 comments on commit e5c4c3a

Please sign in to comment.