Skip to content

Commit

Permalink
implement naive auth
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed May 28, 2023
1 parent e1b3a91 commit f110b1b
Show file tree
Hide file tree
Showing 4 changed files with 569 additions and 440 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### [8.0.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v8.0.0) (2023-05-28)
- **Breaking:** The dapp now uses the useElven version with built-in native token support. There is no fallback, so it is a breaking change. Standard string-based tokens will be deprecated across the MultiversX soon
- update dependencies

### [7.2.1](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v7.2.1) (2023-05-14)
- update [useElven](https://www.useelven.com/)
- fix problems with initialization of the HW provider
Expand Down
4 changes: 2 additions & 2 deletions components/tools/LedgerAccountsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ export const LedgerAccountsList: FC<LedgerAccountsListProps> = ({
</Box>
{loginToken && (
<Box mt={3}>
<Box fontWeight="bold">Auth token:</Box> {loginToken}
{'{}'}
<Box fontWeight="bold" textAlign="center">Login token:</Box>
<Box wordBreak="break-word">{loginToken}</Box>
</Box>
)}
</Flex>
Expand Down
Loading

0 comments on commit f110b1b

Please sign in to comment.