Skip to content

Commit

Permalink
fix nft renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
arr00 committed Aug 30, 2023
1 parent 0fac810 commit a433e56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/renderers/PartyNFTRenderer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ contract PartyNFTRenderer is RendererBase {
: string.concat(
metadata.description,
// Append default description.
"\n\n",
"\\n\\n",
generateDescription(
PartyGovernanceNFT(address(this)).name(),
tokenId
Expand Down Expand Up @@ -289,9 +289,9 @@ contract PartyNFTRenderer is RendererBase {

return
string.concat(
'{"trait_type":"Voting Power", "value":',
'{"trait_type":"Voting Power", "value":"',
votingPowerPercentage,
', "max_value":100}'
'", "max_value":100}'
);
}

Expand Down

0 comments on commit a433e56

Please sign in to comment.