Skip to content

Commit f7bdc6d

Browse files
authored
Merge pull request #1285 from kilavvy/main
fix: typos in documentation files
2 parents 20de94d + e331cef commit f7bdc6d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/ethereum-wallets/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Project ID is required, please obtain it from [walletconnect.com](https://wallet
153153
- `skipSignInAccessKey` (`boolean?`): Allows connecting Ethereum wallets without adding a Limited Access Key which would require owning NEAR to execute the transaction (for rainbowbridge.app and welcome.near.org).
154154
- `nearNodeUrl` (`string?`): NEAR node url to query the NEAR transaction status and onboarding access key.
155155

156-
Developent options (before the NEAR protocol upgrade to support 0x accounts natively):
156+
Development options (before the NEAR protocol upgrade to support 0x accounts natively):
157157

158158
- `devMode` (`boolean?`): During development NEAR protocol doesn't yet support `0x123...abc` accounts natively so in devMode the account with format `0x123...abc.eth-wallet.testnet` is used insead. Setup your devMode account at https://near-wallet-playground.testnet.aurora.dev
159159
- `devModeAccount` (`string?`): Modify the namespace of the devMode root accounts.

packages/modal-ui/src/lib/components/DerivationPath.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ export const DerivationPath: React.FC<DerivationPathProps> = ({
6565
const [customAccountId, setCustomAccountId] = useState("");
6666
const [connecting, setConnecting] = useState(false);
6767

68-
const initalHeaderTitle = translate("modal.ledger.connectWithLedger");
69-
const [headerTitle, setHeaderTitle] = useState(initalHeaderTitle);
68+
const initialHeaderTitle = translate("modal.ledger.connectWithLedger");
69+
const [headerTitle, setHeaderTitle] = useState(initialHeaderTitle);
7070

7171
const getAccountIds = async (publicKey: string): Promise<Array<string>> => {
7272
const url = `${selector.options.network.indexerUrl}/public_key/ed25519:${publicKey}`;

0 commit comments

Comments
 (0)