From 13288827bcc37a749ffb8cd16f69d03ac1b29cb4 Mon Sep 17 00:00:00 2001 From: Doug Date: Thu, 1 Feb 2024 08:25:15 -0800 Subject: [PATCH] Fix bun install command for install docs --- apps/www/src/app/_components/installation-code.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/src/app/_components/installation-code.tsx b/apps/www/src/app/_components/installation-code.tsx index 90dd21b23c..0bf887248d 100644 --- a/apps/www/src/app/_components/installation-code.tsx +++ b/apps/www/src/app/_components/installation-code.tsx @@ -39,7 +39,7 @@ export function InstallationCode({ __npmCommand__: code, __pnpmCommand__: code.replaceAll('npm install', 'pnpm add'), __yarnCommand__: code.replaceAll('npm install', 'yarn add'), - __bunCommand__: code.replaceAll('npm install', 'yarn add'), + __bunCommand__: code.replaceAll('npm install', 'bun add'), }} className={cn('absolute right-4 top-4')} />