Skip to content

Commit 4ba75fd

Browse files
Merge branch 'main' into dependabot/npm_and_yarn/npm_and_yarn-163ea7ba0f
2 parents ebc47b5 + a45c9f7 commit 4ba75fd

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

developer-tools/dashboard/get-started/create-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Based on your plan, Infura allows for the following amount of API keys:
1313
- Developer plan - Allows up to five API keys.
1414
- Team plans and higher - No limit on the number of API keys.
1515

16-
For more information, see to the [Infura pricing page](https://www.infura.io/pricing).
16+
For more information, see the [Infura pricing page](https://www.infura.io/pricing).
1717

1818
:::
1919

docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,13 @@ const config = {
139139
breadcrumbs: false,
140140
sidebarItemsGenerator: async function ({ defaultSidebarItemsGenerator, ...args }) {
141141
const sidebarItems = await defaultSidebarItemsGenerator(args);
142-
const dymanicItems = await fetchAndGenerateDynamicSidebarItems(
142+
const dynamicItems = await fetchAndGenerateDynamicSidebarItems(
143143
MM_RPC_URL,
144144
MM_REF_PATH,
145145
NETWORK_NAMES.metamask
146146
)
147147
if (args.item.dirName === "reference/json-rpc-methods") {
148-
return [...sidebarItems, ...dymanicItems]
148+
return [...sidebarItems, ...dynamicItems]
149149
}
150150
return sidebarItems;
151151
}

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@docusaurus/theme-common": "^3.5.2",
3737
"@docusaurus/theme-mermaid": "^3.5.2",
3838
"@intercom/messenger-js-sdk": "^0.0.14",
39-
"@mdx-js/react": "^3.0.0",
39+
"@mdx-js/react": "^3.1.0",
4040
"@metamask/design-tokens": "^1.11.1",
4141
"@metamask/eth-sig-util": "^7.0.3",
4242
"@metamask/profile-sync-controller": "^0.9.6",

services/how-to/json-web-token-jwt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ To generate a timestamp for testing, use an [online timestamp converter tool](ht
134134
:::
135135

136136
</TabItem>
137-
<TabItem value="Programatically">
137+
<TabItem value="Programmatically">
138138

139139
Developers typically create the JWT token from their keys programmatically. To learn more, follow the tutorial demonstrating how to [create and apply a JWT with Node.js](../tutorials/ethereum/authenticate-with-jwt.md).
140140

services/tutorials/ethereum/track-erc-20-token-transfers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ if (transaction.from == "<SENDER_ADDRESS>") {
275275
You can also track a specific recipient address receiving any tokens by tracking the `transaction.to` value:
276276

277277
```javascript
278-
if (transaction.to == "<RECIEVING_ADDRESS>") {
278+
if (transaction.to == "<RECEIVING_ADDRESS>") {
279279
console.log("Specified address received an ERC-20 token!")
280280
}
281281
```

src/components/Faucet/Alerts.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export const AlertCooldown = () => (
120120

121121
export const AlertSuccess = ({ url }: { url: string }) => (
122122
<div>
123-
<AlertTitle>Transaction successfull!</AlertTitle>
123+
<AlertTitle>Transaction successful!</AlertTitle>
124124
<AlertText>
125125
<span>
126126
Your transaction has been sent to the Ethereum/Sepolia network. You

wallet/reference/sdk-js-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ The metadata options are:
117117
- `iconUrl` - URL of the dapp's icon
118118

119119
:::tip important
120-
Setting `dappMetaData` creates a clear and trustworthy user experience when connecting your dapp to
120+
Setting `dappMetadata` creates a clear and trustworthy user experience when connecting your dapp to
121121
MetaMask Mobile.
122122
MetaMask Mobile displays this metadata in the connection modal to help users identify and verify the
123123
connection request.

0 commit comments

Comments
 (0)