Skip to content

Commit 566564f

Browse files
authored
fix: the command format when pasted in terminal (#5335)
1 parent 287e4df commit 566564f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/homepageExperience/components/steps/cli/InitializeClient.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ export const InitializeClient: FC<OwnProps> = ({
6363
})
6464
const token = currentAuth.token
6565

66-
const codeSnippet = `influx config create --config-name onboarding
67-
--host-url "${url}"
68-
--org "${org.id}"
69-
--token "${token}"
70-
--active`
66+
const codeSnippet = `influx config create --config-name onboarding \\
67+
--host-url "${url}" \\
68+
--org "${org.id}" \\
69+
--token "${token}" \\
70+
--active`
7171

7272
const bucketSnippet = `influx bucket create --name sample-bucket -c onboarding`
7373

0 commit comments

Comments
 (0)