diff --git a/packages/desktop/components/popup/popups/EvmTransactionFromDappPopup.svelte b/packages/desktop/components/popup/popups/EvmTransactionFromDappPopup.svelte index 71e6e3de31..6117fc74f7 100644 --- a/packages/desktop/components/popup/popups/EvmTransactionFromDappPopup.svelte +++ b/packages/desktop/components/popup/popups/EvmTransactionFromDappPopup.svelte @@ -154,6 +154,7 @@ slot="banner" metadata={dapp.metadata} {verifiedState} + showLink={false} classes="bg-surface-1 dark:bg-surface-1-dark pb-4" /> diff --git a/packages/desktop/components/popup/popups/SignMessagePopup.svelte b/packages/desktop/components/popup/popups/SignMessagePopup.svelte index aba260db86..3cf4fbcbe8 100644 --- a/packages/desktop/components/popup/popups/SignMessagePopup.svelte +++ b/packages/desktop/components/popup/popups/SignMessagePopup.svelte @@ -72,6 +72,7 @@ slot="banner" metadata={dapp.metadata} {verifiedState} + showLink={false} classes="bg-surface-1 dark:bg-surface-1-dark pb-4" /> diff --git a/packages/desktop/components/popup/popups/SignTypedDataPopup.svelte b/packages/desktop/components/popup/popups/SignTypedDataPopup.svelte index 235598a75b..93975de7b8 100644 --- a/packages/desktop/components/popup/popups/SignTypedDataPopup.svelte +++ b/packages/desktop/components/popup/popups/SignTypedDataPopup.svelte @@ -75,6 +75,7 @@ slot="banner" metadata={dapp.metadata} {verifiedState} + showLink={false} classes="bg-surface-1 dark:bg-surface-1-dark pb-4" /> diff --git a/packages/desktop/components/popup/popups/SiwePopup.svelte b/packages/desktop/components/popup/popups/SiwePopup.svelte index 8f6ad27e3e..de58e139a9 100644 --- a/packages/desktop/components/popup/popups/SiwePopup.svelte +++ b/packages/desktop/components/popup/popups/SiwePopup.svelte @@ -68,7 +68,12 @@ }} busy={isBusy} > - +
- +
diff --git a/packages/shared/src/components/molecules/DappInfo.svelte b/packages/shared/src/components/molecules/DappInfo.svelte index 896ec73fba..909509001b 100644 --- a/packages/shared/src/components/molecules/DappInfo.svelte +++ b/packages/shared/src/components/molecules/DappInfo.svelte @@ -1,12 +1,14 @@ @@ -27,9 +29,13 @@ {@const { color, icon } = VERIFICATION_ICONS[verifiedState]} {/if} - - {metadata.url} - + {#if showLink} + openUrlInBrowser(metadata.url)} /> + {:else} + + {metadata.url} + + {/if}
{/if}