Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"analyze": "cross-env ANALYZE=true next build",
"build": "next build",
"dev": "next dev",
"format": "prettier . --check",
"format": "prettier . --write",
"format:fix": "prettier . --write",
"lint": "next lint",
"lint:fix": "next lint --fix",
Expand Down
4 changes: 4 additions & 0 deletions src/components/CodeArea.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
background: none;
border: 1px solid transparent;
color: currentColor;
/* Keeps copy button visible on small screens */
display: flex;
align-items: center;
justify-content: center;
}

.active,
Expand Down
2 changes: 1 addition & 1 deletion src/content/get-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ npm install react-hook-form

## Example

The following code excerpt demonstrates a basic usage example:
The following code excerpt hello demonstrates a basic usage:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you change this back?

Copy link
Author

@LuckySilver0021 LuckySilver0021 Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @bluebill1049,
Just letting you know that I've pushed the revert commit for get-started.mdx.
Thanks!


<TabGroup buttonLabels={["TS", "JS"]}>

Expand Down