diff --git a/packages/desktop/views/dashboard/collectibles/views/CollectiblesDetailsView.svelte b/packages/desktop/views/dashboard/collectibles/views/CollectiblesDetailsView.svelte index f1193ffc6c..f661c7a6e7 100644 --- a/packages/desktop/views/dashboard/collectibles/views/CollectiblesDetailsView.svelte +++ b/packages/desktop/views/dashboard/collectibles/views/CollectiblesDetailsView.svelte @@ -29,9 +29,12 @@ Pane, Text, TextType, + Alert, } from 'shared/components' let modal: Modal + let error: string + let warning: string const explorerUrl = getOfficialExplorerUrl($activeProfile?.networkProtocol, $activeProfile?.networkType) const nft: INft = getNftByIdFromAllAccountNfts($selectedAccountIndex, $selectedNftId) @@ -122,12 +125,21 @@
+
+ {#if error} + + {:else if warning} + + {/if} +
diff --git a/packages/shared/components/atoms/MediaDisplay.svelte b/packages/shared/components/atoms/MediaDisplay.svelte index 4cec65812d..90e72f0f2d 100644 --- a/packages/shared/components/atoms/MediaDisplay.svelte +++ b/packages/shared/components/atoms/MediaDisplay.svelte @@ -1,23 +1,24 @@ diff --git a/packages/shared/components/atoms/buttons/TooltipIcon.svelte b/packages/shared/components/atoms/buttons/TooltipIcon.svelte index f0cbd627aa..78d2087310 100644 --- a/packages/shared/components/atoms/buttons/TooltipIcon.svelte +++ b/packages/shared/components/atoms/buttons/TooltipIcon.svelte @@ -1,7 +1,6 @@