Skip to content

Commit 47d1499

Browse files
committed
update dependencies
1 parent d376a73 commit 47d1499

File tree

4 files changed

+669
-638
lines changed

4 files changed

+669
-638
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### [9.0.1](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.0.1) (2023-09-23)
2+
- update useElven (update with a bugfix)
3+
- update dependencies
4+
- minor style fixes
5+
16
### [9.0.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.0.0) (2023-09-02)
27
- switch to the Next.js App Router architecture
38
- remove API proxy and rewrites, you can still have them, but it isn't implemented by default. It was too confusing.

components/elven-ui/login-component.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,44 +52,44 @@ export const LoginComponent = memo(() => {
5252
return (
5353
<>
5454
{isLoggingIn ? (
55-
<div className="flex inset-0 z-50 items-center justify-center min-h-[208px]">
55+
<div className="flex inset-0 z-50 items-center justify-center min-h-[200px]">
5656
<div>
5757
{ledgerOrPortalName ? (
5858
<>
5959
<div className="text-lg">Confirmation required</div>
6060
<div className="text-sm">Approve on {ledgerOrPortalName}</div>
6161
</>
6262
) : null}
63-
<div className="flex items-center justify-center mt-6">
63+
<div className="flex items-center justify-center">
6464
<Spinner size="40" />
6565
</div>
6666
</div>
6767
</div>
6868
) : (
6969
<div className="flex flex-col gap-4 items-center px-8">
7070
<Button
71-
className="w-full select-none"
71+
className="w-full select-none h-auto"
7272
variant="outline"
7373
onClick={handleLogin(LoginMethodsEnum.wallet)}
7474
>
7575
MultiversX Web Wallet
7676
</Button>
7777
<Button
78-
className="w-full select-none"
78+
className="w-full select-none h-auto"
7979
variant="outline"
8080
onClick={handleLogin(LoginMethodsEnum.extension)}
8181
>
8282
MultiversX Browser Extension
8383
</Button>
8484
<Button
85-
className="w-full select-none"
85+
className="w-full select-none h-auto"
8686
variant="outline"
8787
onClick={handleLogin(LoginMethodsEnum.walletconnect)}
8888
>
8989
xPortal Mobile App
9090
</Button>
9191
<Button
92-
className="w-full select-none"
92+
className="w-full select-none h-auto"
9393
variant="outline"
9494
onClick={handleLedgerAccountsList}
9595
>

0 commit comments

Comments
 (0)