Skip to content

Fix broken links #2044

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion snaps/features/custom-ui/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ The SVG is rendered within an `<img>` tag, which prevents JavaScript or interact
being supported.

:::note
To disable image support, set the [`features.images`](../../reference/cli/options.md#featuresimages)
To disable image support, set the [`features.images`](../../reference/config-options.md#featuresimages)
configuration option to `false`.
The default is `true`.
:::
Expand Down
4 changes: 2 additions & 2 deletions snaps/how-to/debug-a-snap/common-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ If you encounter any issues that you can't solve on your own, please
Because [Secure ECMAScript (SES)](../../learn/about-snaps/execution-environment.md) adds additional restrictions
on the JavaScript runtime on top of strict mode, code that executes normally under strict mode might
not under SES.
[`yarn mm-snap build`](../../reference/cli/subcommands.md#b-build) by default attempts to execute a
[`yarn mm-snap build`](../../reference/cli.md#b-build) by default attempts to execute a
Snap in a stubbed SES environment.
You can also disable this behavior and run the evaluation step separately using
[`yarn mm-snap eval`](../../reference/cli/subcommands.md#e-eval).
[`yarn mm-snap eval`](../../reference/cli.md#e-eval).
If an error is thrown during this step, it's likely due to a SES incompatibility, and you must fix
the issues manually.
These incompatibilities tend to occur in dependencies.
Expand Down
2 changes: 1 addition & 1 deletion snaps/how-to/test-a-snap.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ You can then run the `jest` command as usual.
:::note
`@metamask/snaps-jest` assumes the Snap is built in the directory you run Jest from.
If you use a different directory, you can specify the path using the
[`server.root`](../reference/cli/options.md#serverroot) option, or by running your own HTTP server.
[`server.root`](../reference/config-options.md#serverroot) option, or by running your own HTTP server.
It's currently not possible to use `@metamask/snaps-jest` with a Snap that is not built.
:::

Expand Down
2 changes: 1 addition & 1 deletion snaps/learn/about-snaps/execution-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The following globals are also available:

:::info note
To use Node.js built-in modules such as `crypto` and `path`, set the
[`polyfills`](../../reference/cli/options.md#polyfills) configuration option to `true`.
[`polyfills`](../../reference/config-options.md#polyfills) configuration option to `true`.
:::

## Secure ECMAScript (SES)
Expand Down
2 changes: 1 addition & 1 deletion wallet/how-to/connect.md
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,6 @@ You can clone the repository and run the example locally using `npm i && npm run
After connecting to MetaMask directly, you can:

- [Detect, add, and switch networks](/wallet/how-to/manage-networks).
- [Send transactions](../how-to/send-transactions.md).
- [Send transactions](../how-to/send-transactions/index.md).
- [Sign data](../how-to/sign-data/index.md).
- [Display tokens, contract methods, and icons in MetaMask](/wallet/how-to/display).
Loading