From c59bf238f2ab4af1280b6a5aa61ac130dcd90591 Mon Sep 17 00:00:00 2001 From: M SHAH Date: Wed, 7 Aug 2024 21:40:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20=20:=20updated=20link=20code=20e?= =?UTF-8?q?xample=20in=20documentation=20to=20reflect=20correct=20formatti?= =?UTF-8?q?ng=20and=20value?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/get-started/link-code.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/get-started/link-code.md b/docs/docs/get-started/link-code.md index 3ee4f04a2..a5e66f826 100644 --- a/docs/docs/get-started/link-code.md +++ b/docs/docs/get-started/link-code.md @@ -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" } ``` @@ -40,6 +40,6 @@ You can also set the link code manually in the code like so: ```javascript create({ - linkCode: '1234567890' + linkCode: '447123456789' }) ``` \ No newline at end of file