Skip to content

Commit

Permalink
Merge pull request #132 from polkadot-ui/nik-minor-typo
Browse files Browse the repository at this point in the history
minor typo fix
  • Loading branch information
wirednkod authored Jul 7, 2024
2 parents c850624 + f196ce9 commit 5dd1e74
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions src/docs/Experimental/Connect/ConnectPageSimple.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ return (

return (
<>
<h4 style={{ paddingTop: "2rem" }}>
Select an account from the demo below (you must have some extension
installed 🙂) :
</h4>
<p>Selected extension is: {selectedAccount?.extension} </p>
<p>Selected account is: {selectedAccount?.name} </p>
<p>Selected address is: {selectedAccount?.address} </p>
<Demo
showThemes={false}
style={{ display: "flex", flexDirection: "column" }}
Expand Down
16 changes: 8 additions & 8 deletions src/docs/Experimental/Connect/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const Doc = ({ folder, npm }: DocProps) => {
<>
<Edit folder={folder} />
<Header
title="Wallet Connect"
title="Wallets Connect"
subtitle="A React recipe that allows easy integration of extension wallets with browser app."
npm={npm}
status="experimental"
Expand All @@ -21,13 +21,13 @@ export const Doc = ({ folder, npm }: DocProps) => {
</p>*/}
<h4>Introduction</h4>
<p>
The <code>Wallet Connect</code> recipe (which actually is 2 specific
Providers - the ExtensionProvider which identifies the extensions
installed in the browser and the AccountProvider which is listing the
accounts from the selected extensions) is meant to exist for quick and
fast integration of any app with the installed wallets of the user's
browser. It identifies the installed extension and upon clicking on one,
it prompts the user to connect be shown.
The <code>Wallets Connect</code> recipe (which actually is 2 specific
Providers - the <code>ExtensionProvider</code> which identifies the
extensions installed in the browser and the <code>AccountProvider</code>{" "}
which is listing the accounts from the selected extensions) is meant to
exist for quick and fast integration of any app with the installed
wallets of the user's browser. It identifies the installed extension and
upon clicking on one, it prompts the user to connect be shown.
</p>
<ConnectPageSimple />
</>
Expand Down

0 comments on commit 5dd1e74

Please sign in to comment.