Skip to content
This repository was archived by the owner on May 4, 2026. It is now read-only.

Commit 9847877

Browse files
Alex Kimclaude
andcommitted
fix: correct mismatched Tabs defaultValue and TabItem value in devnet guide
The Tabs component had defaultValue="cargo" but no child TabItem with that value (only "macos" and "ubuntu" exist). The second TabItem also had value="prebuilt" instead of "ubuntu", causing a Docusaurus rendering crash. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2ac1f5b commit 9847877

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

documentation/guides/07_devnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This feature is only available on Unix-based systems.
4343

4444
You'll need to install the `tmux` package first:
4545

46-
<Tabs defaultValue="cargo"
46+
<Tabs defaultValue="macos"
4747
values={[
4848
{ label: 'MacOS', value: 'macos' },
4949
{ label: 'Ubuntu', value: 'ubuntu' },
@@ -55,7 +55,7 @@ To install `tmux` on macOS, you can use the Homebrew package manager. If you hav
5555
brew install tmux
5656
```
5757
</TabItem>
58-
<TabItem value="prebuilt">
58+
<TabItem value="ubuntu">
5959
On Ubuntu and other Debian-based systems, you can use the apt package manager:
6060

6161
```bash

0 commit comments

Comments
 (0)