Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<meta property="og:title" content="MultiversX dApp Template" />
<meta
property="og:description"
content="A basic implementation of MultiversX dApp providing the basics for MultiversX authentication and TX signing."
content="The sdk-dapp starter project for any dApp built on the MultiversX blockchain."
/>
<meta
property="og:image"
Expand Down
Binary file modified public/preview.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/img/passkey-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 9 additions & 10 deletions src/pages/Home/components/HomeConnect/HomeConnect.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// import { ReactComponent as PasskeyIcon } from 'assets/img/passkey-icon.svg';
import { ReactComponent as LedgerIcon } from 'assets/img/ledger-icon.svg';
import { ReactComponent as MetamaskIcon } from 'assets/img/metamask-icon.svg';
import { ReactComponent as PasskeyIcon } from 'assets/img/passkey-icon.svg';
import { ReactComponent as WebWalletIcon } from 'assets/img/web-wallet-icon.svg';
import { ReactComponent as XPortalIcon } from 'assets/img/xportal-icon.svg';
import {
Expand All @@ -10,7 +10,6 @@ import {
GET_XPORTAL
} from 'localConstants';
import { BrowserEnum, getDetectedBrowser, getNetworkConfig } from 'lib';

import { ConnectCard, ExtensionConnect } from './components';

// prettier-ignore
Expand Down Expand Up @@ -38,14 +37,14 @@ const connectCards = [
? FIREFOX_METAMASK_ADDON_LINK
: CHROME_METAMASK_EXTENSION_LINK
},
{
icon: PasskeyIcon,
title: 'Passkey',
description:
'Passkeys offer a more secure and user-friendly way to authenticate and sign transactions.',
linkTitle: 'Get Passkey',
linkDownloadAddress: walletAddress
},
// {
// icon: PasskeyIcon,
// title: 'Passkey',
// description:
// 'Passkeys offer a more secure and user-friendly way to authenticate and sign transactions.',
// linkTitle: 'Get Passkey',
// linkDownloadAddress: walletAddress
// },
{
icon: XPortalIcon,
title: 'xPortal Wallet',
Expand Down
Loading