diff --git a/ark/docs/components/InstallationTabs.tsx b/ark/docs/components/InstallationTabs.tsx index 8a2b66764b..f09ecb1545 100644 --- a/ark/docs/components/InstallationTabs.tsx +++ b/ark/docs/components/InstallationTabs.tsx @@ -11,7 +11,7 @@ type InstallationTabProps = { const InstallerTab = ({ name }: InstallationTabProps) => ( - {`${name} ${name === "yarn" ? "add" : "install"} arktype`} + {`${name} ${name === "yarn" || name === "bun" ? "add" : "install"} arktype`} )