Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions docs/docs/clients/client-side/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@ be found here:

### NPM

:::tip

We also have flagsmith-es if you'd prefer to use [ES](https://262.ecma-international.org/6.0/) modules.

:::

```bash
npm i flagsmith --save
```
Expand Down
6 changes: 0 additions & 6 deletions docs/docs/clients/client-side/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ Example applications for a variety of React, React Native and Next.js can be fou

### NPM

:::tip

We also have flagsmith-es if you'd prefer to use [ES](https://262.ecma-international.org/6.0/) modules.

:::

```bash
npm i flagsmith --save
```
Expand Down
6 changes: 3 additions & 3 deletions docs/src/components/SdkVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export const JavaVersion = ({ spec = '~7' }) => Version({ sdk: 'java', spec });
export const AndroidVersion = ({ spec = '~1' }) => Version({ sdk: 'android', spec });
export const CocoapodsVersion = ({ spec = '~3' }) => Version({ sdk: 'cocoapods', spec });
export const SwiftPMVersion = ({ spec = '~3' }) => Version({ sdk: 'swiftpm', spec });
export const DotnetVersion = ({ spec = '~7' }) => Version({ sdk: 'dotnet', spec });
export const DotnetVersion = ({ spec = '~8' }) => Version({ sdk: 'dotnet', spec });
export const ElixirVersion = ({ spec = '~2' }) => Version({ sdk: 'elixir', spec });
export const RustVersion = ({ spec = '~2' }) => Version({ sdk: 'rust', spec });
export const JsVersion = ({ spec = '~8' }) => Version({ sdk: 'js', spec });
export const NodejsVersion = ({ spec } = { spec: '~5' }) => Version({ sdk: 'nodejs', spec });
export const JsVersion = ({ spec = '~9' }) => Version({ sdk: 'js', spec });
export const NodejsVersion = ({ spec } = { spec: '~6' }) => Version({ sdk: 'nodejs', spec });
export const FlutterVersion = ({ spec = '~6' }) => Version({ sdk: 'flutter', spec });