Skip to content

Commit 6933c0a

Browse files
style: fix markdown formatting and add CLAUDE.md
1 parent dead23b commit 6933c0a

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

CLAUDE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Miden Tutorials
2+
3+
## Markdown Formatting
4+
5+
This repo has a CI check that enforces markdown formatting via Prettier.
6+
7+
After making any changes to `.md` files, run:
8+
9+
```sh
10+
npx prettier --check "**/*.md"
11+
```
12+
13+
If it fails, fix with:
14+
15+
```sh
16+
npx prettier --write "**/*.md"
17+
```
18+
19+
The Prettier config is in `.prettierrc`. Files listed in `.prettierignore` are excluded from formatting.

docs/src/web-client/react_wallet_tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -788,8 +788,8 @@ Calling `connect()` handles the full Turnkey authentication flow: passkey login,
788788

789789
**TurnkeySignerProvider Props:**
790790

791-
| Prop | Type | Description |
792-
| -------- | ------------------------ | -------------------------------------------------------------------- |
791+
| Prop | Type | Description |
792+
| -------- | ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
793793
| `config` | `Partial<TurnkeySDKBrowserConfig>` | Optional. Defaults to `apiBaseUrl: "https://api.turnkey.com"` and `defaultOrganizationId` from `VITE_TURNKEY_ORG_ID` env var. |
794794

795795
The `useTurnkeySigner()` hook is available for advanced use cases where you need direct access to the Turnkey `client`, the selected `account`, or the `setAccount()` method to manually control account selection.

0 commit comments

Comments
 (0)