Skip to content

Commit bee2925

Browse files
committed
minor fixes
1 parent 8a65a7e commit bee2925

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

delegation-toolkit/get-started/llm-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ This website contains an [`LLMs.txt`](/llms.txt) file that is intended for use b
1111
It provides information about the structure of the MetaMask developer documentation,
1212
to facilitate better indexing, summarization, and understanding by LLMs.
1313

14-
You can add this files to an LLM-based tool like [ChatGPT](https://chatgpt.com/) or [Cursor](https://docs.cursor.com/context/@-symbols/@-docs),
14+
You can add this file to an LLM-based tool like [ChatGPT](https://chatgpt.com/) or [Cursor](https://docs.cursor.com/context/@-symbols/@-docs),
1515
to provide detailed context about the MetaMask developer documentation.

src/components/CreditCost/CreditCostPrice.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import React from 'react';
44
import { API_COSTS } from '@site/src/lib/data';
5+
import Link from '@docusaurus/Link'
56

67
const CreditCost = ({ network, method }) => {
78
// Get the credit cost for the given network and method, defaulting to 80 if not found
@@ -12,9 +13,9 @@ const CreditCost = ({ network, method }) => {
1213
return (
1314
<span>
1415
This method uses{' '}
15-
<a href="/services/get-started/pricing/" rel="noopener noreferrer">
16+
<Link to="/services/get-started/pricing/">
1617
{cost} credits
17-
</a>{' '}
18+
</Link>{' '}
1819
from your daily balance.
1920
</span>
2021
);

0 commit comments

Comments
 (0)