diff --git a/packages/wallet/frontend/src/components/WalletAddressesTable.tsx b/packages/wallet/frontend/src/components/WalletAddressesTable.tsx index 419fa5fce..4877ed9b4 100644 --- a/packages/wallet/frontend/src/components/WalletAddressesTable.tsx +++ b/packages/wallet/frontend/src/components/WalletAddressesTable.tsx @@ -104,7 +104,7 @@ export const CopyWalletAddress = () => { let pointer = walletAddress.url if (walletAddress.isCard) { - const url = new URL(walletAddress.url) + const url = new URL(walletAddress.url.replace('$', 'https://')) pointer = `$ilp.dev${url.pathname}` } diff --git a/packages/wallet/frontend/src/pages/auth/login.tsx b/packages/wallet/frontend/src/pages/auth/login.tsx index 55214b871..d75826910 100644 --- a/packages/wallet/frontend/src/pages/auth/login.tsx +++ b/packages/wallet/frontend/src/pages/auth/login.tsx @@ -140,6 +140,12 @@ const LoginPage: NextPageWithLayout = () => { /> +

+ Not a customer?{' '} + + Create an account + +

{ width={500} height={200} /> -

- Not a customer?{' '} - - Create an account - -

) } diff --git a/packages/wallet/frontend/src/pages/auth/signup.tsx b/packages/wallet/frontend/src/pages/auth/signup.tsx index 4e79bebfc..0acdf3c0e 100644 --- a/packages/wallet/frontend/src/pages/auth/signup.tsx +++ b/packages/wallet/frontend/src/pages/auth/signup.tsx @@ -40,7 +40,7 @@ const SignUpPage: NextPageWithLayout = () => { return ( <> -

+

Create Account

diff --git a/packages/wallet/frontend/src/pages/index.tsx b/packages/wallet/frontend/src/pages/index.tsx index 7f063e144..f62cd09ec 100644 --- a/packages/wallet/frontend/src/pages/index.tsx +++ b/packages/wallet/frontend/src/pages/index.tsx @@ -77,9 +77,6 @@ export const getServerSideProps: GetServerSideProps<{ const response = await accountService.list(ctx.req.headers.cookie) const user = await userService.me(ctx.req.headers.cookie) - console.log('response', JSON.stringify(response, null, 2)) - console.log('user', JSON.stringify(user, null, 2)) - if (!response.success || !user.success) { return { notFound: true