π Incorrect Component Used in Drizzle Studio Quick Start Guide
File: src/pages/drizzle-studio/overview.mdx
Location: Lines 24β27
Problem
The "Install dependencies" step in the Quick Start guide incorrectly uses the <Npx> component:
<Npx>
drizzle-orm
-D drizzle-kit
</Npx>
However, <Npx> is meant for command execution, not dependency installation. It automatically prepends runners like npx, yarn, or pnpm to the listed lines.
This leads to broken output such as:
npx drizzle-orm
npx -D drizzle-kit
Which is obviously invalid, and will confuse users.
Example output: 