Skip to content

Commit

Permalink
Merge pull request #300 from Itheum/stg
Browse files Browse the repository at this point in the history
1.12.0 STG -> MAIN
  • Loading branch information
damienen authored Mar 5, 2024
2 parents c367fae + 6a561b0 commit 7f9a521
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "explorer-dapp",
"description": "Itheum Explorer is a DApp for the public to explore and visualize data within the Itheum protocol",
"version": "1.11.2",
"version": "1.12.0",
"author": "Itheum",
"license": "GPL-3.0-or-later",
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions src/appsConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const MULTIVERSX_INFOGRAPHICS_TOKENS: app_token[] = IS_DEVNET
export const FEATURED_NF_TUNES_TOKEN: app_token = IS_DEVNET
? { tokenIdentifier: "DATANFTFT-e0b917", nonce: 15 }
: { tokenIdentifier: "DATANFTFT-e936d4", nonce: 4 };

export const NF_TUNES_TOKENS: app_token[] = IS_DEVNET
? [
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 15 },
Expand All @@ -40,6 +41,7 @@ export const NF_TUNES_TOKENS: app_token[] = IS_DEVNET
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 34 },
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 42 },
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 56 },
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 48 },
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 529 },
]
: [{ tokenIdentifier: "DATANFTFT-e936d4", nonce: 4 }];
Expand Down
8 changes: 5 additions & 3 deletions src/components/DataNftCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,12 @@ export function DataNftCard({
"border-[0.5px] dark:border-slate-100/30 border-slate-300 bg-transparent rounded-[2.37rem] base:w-[18.5rem] md:w-[20.6rem]"
)}>
<CardContent className="flex flex-col p-3">
<div className="mb-4 flex justify-center">
<img className="md:w-auto base:w-[15rem]" src={!isLoading ? dataNft.nftImgUrl : "https://media.elrond.com/nfts/thumbnail/default.png"} />
<div className="mb-4 flex justify-center base:max-h-[15rem] md:max-h-[18rem] object-cover">
<img
className="md:w-auto base:w-[15rem] rounded-3xl"
src={!isLoading ? dataNft.nftImgUrl : "https://media.elrond.com/nfts/thumbnail/default.png"}
/>
</div>

<div className="md:h-[15rem] h-[13rem]">
<div className="grid grid-cols-12 mb-1">
<span className="col-span-4 opacity-6 base:text-sm md:text-base">Title:</span>
Expand Down
1 change: 0 additions & 1 deletion src/pages/AppMarketplace/NFTunes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ interface ExtendedViewDataReturnType extends ViewDataReturnType {
export const NFTunes = () => {
const { address } = useGetAccount();
const { theme } = useTheme();
console.log("Theme", theme);
///native auth
const { tokenLogin } = useGetLoginInfo();
const { hasPendingTransactions } = useGetPendingTransactions();
Expand Down

0 comments on commit 7f9a521

Please sign in to comment.