Skip to content

Commit

Permalink
📝 Update installation commands to remove unnecessary peer dep install
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Oct 19, 2024
1 parent 569b19c commit 84edf64
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CodeEditor } from "@/components/inputs/CodeEditor";
export const InstallNextjsPackageSnippet = () => {
return (
<CodeEditor
value={`npm install @typebot.io/js @typebot.io/nextjs`}
value={`npm install @typebot.io/nextjs`}
isReadOnly
lang="shell"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CodeEditor } from "@/components/inputs/CodeEditor";
export const InstallReactPackageSnippet = () => {
return (
<CodeEditor
value={`npm install @typebot.io/js @typebot.io/react`}
value={`npm install @typebot.io/react`}
isReadOnly
lang="shell"
/>
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/deploy/web/libraries/next-js.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This lib is a convenient wrapper around the [Typebot React](./react) library. It
## Install

```bash
npm install @typebot.io/js @typebot.io/nextjs
npm install @typebot.io/nextjs
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/deploy/web/libraries/react.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: React
## Install

```bash
npm install @typebot.io/js @typebot.io/react
npm install @typebot.io/react
```

## Standard
Expand Down
2 changes: 1 addition & 1 deletion apps/landing-page/src/app/blog/react-chatbot/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Typebot is an open-source platform that makes it easy to create chatbots for Rea
4. In your React project, install **Typebot libraries**:

```bash
npm install @typebot.io/js @typebot.io/react
npm install @typebot.io/react
```

5. Create a new component in your React app:
Expand Down
2 changes: 1 addition & 1 deletion packages/embeds/nextjs/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Install

```bash
npm install @typebot.io/js @typebot.io/nextjs
npm install @typebot.io/nextjs
```

## Standard
Expand Down
2 changes: 1 addition & 1 deletion packages/embeds/react/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Install

```bash
npm install @typebot.io/js @typebot.io/react
npm install @typebot.io/react
```

## Standard
Expand Down

0 comments on commit 84edf64

Please sign in to comment.