Skip to content

Commit

Permalink
📝 : updated link code example in documentation to reflect correct for…
Browse files Browse the repository at this point in the history
…matting and value
  • Loading branch information
smashah committed Aug 7, 2024
1 parent 20b8de0 commit c59bf23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/docs/get-started/link-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ In open-wa, the way to activate the link code request is to set the host account
If you're using the Easy API, you can set the link code in the config object like so:

```bash
> npx @open-wa/wa-automate --linkCode '447123456789'
> npx @open-wa/wa-automate --link-code '447123456789'
```

Or if you're using the `cli.config.json` file:

```json
{
"linkCode": "1234567890"
"linkCode": "447123456789"
}
```

Expand All @@ -40,6 +40,6 @@ You can also set the link code manually in the code like so:

```javascript
create({
linkCode: '1234567890'
linkCode: '447123456789'
})
```

0 comments on commit c59bf23

Please sign in to comment.