Skip to content

Commit

Permalink
hide token number from metadata name
Browse files Browse the repository at this point in the history
  • Loading branch information
tempe-techie committed Jun 4, 2024
1 parent 1e20450 commit 64b77b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/nft/collection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ export default {
console.log(metadata);
if (metadata?.name) {
this.cName = metadata.name;
this.cName = metadata.name.replace("#1", "");
}
if (metadata?.description) {
Expand Down Expand Up @@ -936,7 +936,7 @@ export default {
const metadata = response.data;
if (metadata?.name) {
this.cName = metadata.name;
this.cName = metadata.name.replace("#1", "");
}
if (metadata?.description) {
Expand Down

0 comments on commit 64b77b8

Please sign in to comment.