Skip to content

Commit

Permalink
Merge branch 'main' of github.com:interledger/testnet into fund-card-…
Browse files Browse the repository at this point in the history
…wallet
  • Loading branch information
dragosp1011 committed Oct 25, 2024
2 parents c790604 + 0e4aeef commit 599efd3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}`
}

Expand Down
12 changes: 6 additions & 6 deletions packages/wallet/frontend/src/pages/auth/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ const LoginPage: NextPageWithLayout = () => {
/>
</button>
</Form>
<p className="mt-auto text-center font-extralight text-green dark:text-green-neon">
Not a customer?{' '}
<Link href="signup" className="font-medium underline">
Create an account
</Link>
</p>
</div>
<Image
className="mt-auto object-cover md:hidden"
Expand All @@ -149,12 +155,6 @@ const LoginPage: NextPageWithLayout = () => {
width={500}
height={200}
/>
<p className="mt-auto text-center font-extralight text-green dark:text-green-neon">
Not a customer?{' '}
<Link href="signup" className="font-medium underline">
Create an account
</Link>
</p>
</>
)
}
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/frontend/src/pages/auth/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const SignUpPage: NextPageWithLayout = () => {
return (
<>
<HeaderLogo header="Welcome" />
<h2 className="mb-5 mt-10 text-xl text-green dark:text-teal-neon">
<h2 className="mb-5 mt-2 text-xl text-green dark:text-teal-neon">
Create Account
</h2>
<div className="z-10 w-2/3">
Expand Down
3 changes: 0 additions & 3 deletions packages/wallet/frontend/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 599efd3

Please sign in to comment.