Skip to content

Commit

Permalink
Tweaking dependencies; Fixing state loading (#4)
Browse files Browse the repository at this point in the history
* Tweaking dependencies; Fixing state loading

* Tweaking readme
  • Loading branch information
aorumbayev authored Dec 5, 2022
1 parent 3d9f92d commit 09ce3a8
Show file tree
Hide file tree
Showing 4 changed files with 1,576 additions and 1,899 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p align="center"><a href="https://github.com/cusma/algorealm"><img width=100% src="https://ipfs.algonode.xyz/ipfs/bafybeicqjdrwufixgun4quyble4kkvojouo3dnijuexx4wtnmt23p3dxeq" border="0" /></a></p>
<p align="center"><a href="https://github.com/cusma/algorealm"><img width=100% src="https://ipfs.algonode.xyz/ipfs/bafkreifsrjpzws5m6hwp37uyppzoin5nags4cckfvfrzzgjlkwsmtrdcbi" border="0" /></a></p>

<p align="center">
<a href="https://algorand.com"><img src="https://img.shields.io/badge/Powered by-Algorand-black.svg" /></a>
Expand Down
4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,12 @@
"@emotion/styled": "11.10.5",
"@fontsource/roboto": "4.5.8",
"@hookform/resolvers": "2.9.10",
"@json-rpc-tools/utils": "1.7.6",
"@mui/icons-material": "5.10.9",
"@mui/lab": "5.0.0-alpha.106",
"@mui/material": "5.10.12",
"@mui/x-data-grid": "5.17.10",
"@perawallet/connect": "^1.0.7",
"@randlabs/myalgo-connect": "1.4.0",
"@reduxjs/toolkit": "1.9.0",
"@walletconnect/client": "1.8.0",
"algorand-walletconnect-qrcode-modal": "1.8.0",
"algosdk": "1.23.1",
"axios": "0.27.2",
"csstype": "^3.1.1",
Expand Down
9 changes: 2 additions & 7 deletions src/pages/console.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -257,12 +257,7 @@ const Console = () => {

if (typeof window !== `undefined`) {
const persistedChainType =
chain !== undefined
? chain.toLowerCase() === `mainnet`
? ChainType.MainNet
: ChainType.TestNet
: (localStorage.getItem(`ChainType`) as ChainType) ??
ChainType.TestNet;
(localStorage.getItem(`ChainType`) as ChainType) ?? ChainType.TestNet;
changeChain(persistedChainType);
}

Expand Down Expand Up @@ -294,7 +289,7 @@ const Console = () => {
promptLabelStyle={{ color: `#FFFFFF` }} // Prompt label colour
inputTextStyle={{ color: `white` }} // Prompt text colour
commands={commands}
welcomeMessage={`Welcome to the AlgoRealm v0.1.0 👑`}
welcomeMessage={`Welcome to the AlgoRealm v0.1.0 👑\nType 'help' to get started.`}
promptLabel={customPromptLabel}
/>
</Container>
Expand Down
Loading

1 comment on commit 09ce3a8

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for algorealm ready!

✅ Preview
https://algorealm-ds1r19ite-algoworldexplorer.vercel.app

Built with commit 09ce3a8.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.