From 9f17a7c1ee6e2b0c8ef483628685d0f5dda05b3a Mon Sep 17 00:00:00 2001 From: devvAyman Date: Thu, 6 Feb 2025 16:11:45 +0100 Subject: [PATCH] fix: correct yarn command syntax in CLI commands --- components/cli-commands.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cli-commands.tsx b/components/cli-commands.tsx index 23c7fa25..1ad9fe61 100644 --- a/components/cli-commands.tsx +++ b/components/cli-commands.tsx @@ -11,7 +11,7 @@ export default function CliCommands({ name }: { name: string }) { const commands = { pnpm: `pnpm dlx shadcn@latest add https://originui.com/r/${name}.json`, npm: `npx shadcn@latest add https://originui.com/r/${name}.json`, - yarn: `npx dlx shadcn@latest add https://originui.com/r/${name}.json`, + yarn: `npx shadcn@latest add https://originui.com/r/${name}.json`, bun: `bunx --bun shadcn@latest add https://originui.com/r/${name}.json`, };