Skip to content

Commit 8d1ec22

Browse files
Fix broken links (#2044)
* Fix broken links * Update snaps/features/custom-ui/index.md --------- Co-authored-by: Alexandra Carrillo <[email protected]>
1 parent 7ad1e57 commit 8d1ec22

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

snaps/features/custom-ui/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ The SVG is rendered within an `<img>` tag, which prevents JavaScript or interact
857857
being supported.
858858
859859
:::note
860-
To disable image support, set the [`features.images`](../../reference/cli/options.md#featuresimages)
860+
To disable image support, set the [`features.images`](../../reference/config-options.md#featuresimages)
861861
configuration option to `false`.
862862
The default is `true`.
863863
:::

snaps/how-to/debug-a-snap/common-issues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ If you encounter any issues that you can't solve on your own, please
1818
Because [Secure ECMAScript (SES)](../../learn/about-snaps/execution-environment.md) adds additional restrictions
1919
on the JavaScript runtime on top of strict mode, code that executes normally under strict mode might
2020
not under SES.
21-
[`yarn mm-snap build`](../../reference/cli/subcommands.md#b-build) by default attempts to execute a
21+
[`yarn mm-snap build`](../../reference/cli.md#b-build) by default attempts to execute a
2222
Snap in a stubbed SES environment.
2323
You can also disable this behavior and run the evaluation step separately using
24-
[`yarn mm-snap eval`](../../reference/cli/subcommands.md#e-eval).
24+
[`yarn mm-snap eval`](../../reference/cli.md#e-eval).
2525
If an error is thrown during this step, it's likely due to a SES incompatibility, and you must fix
2626
the issues manually.
2727
These incompatibilities tend to occur in dependencies.

snaps/how-to/test-a-snap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ You can then run the `jest` command as usual.
7272
:::note
7373
`@metamask/snaps-jest` assumes the Snap is built in the directory you run Jest from.
7474
If you use a different directory, you can specify the path using the
75-
[`server.root`](../reference/cli/options.md#serverroot) option, or by running your own HTTP server.
75+
[`server.root`](../reference/config-options.md#serverroot) option, or by running your own HTTP server.
7676
It's currently not possible to use `@metamask/snaps-jest` with a Snap that is not built.
7777
:::
7878

snaps/learn/about-snaps/execution-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The following globals are also available:
5151

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

5757
## Secure ECMAScript (SES)

wallet/how-to/connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,6 @@ You can clone the repository and run the example locally using `npm i && npm run
445445
After connecting to MetaMask directly, you can:
446446

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

0 commit comments

Comments
 (0)