Skip to content
Open
Show file tree
Hide file tree
Changes from all 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:

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

Expand Down