fix(client): undent dents caused by dedent (#41052)

* fix(client): undent dents caused by dedent

* remove one more unnecessary indent caused by dedent

* remove dedent

* add: dedent with no indentation

* correct line breaks
This commit is contained in:
Shaun Hamilton
2021-02-11 06:42:51 +00:00
committed by GitHub
parent 478cfcb7ea
commit 0bdff7c2ed

View File

@@ -52,7 +52,7 @@ function createQuestionEpic(action$, state$, { window }) {
let textMessage = dedent( let textMessage = dedent(
`**Tell us what's happening:** `**Tell us what's happening:**
\n\n
${ ${
projectFormValues.length projectFormValues.length
? `**Your project link(s)**\n` ? `**Your project link(s)**\n`
@@ -61,7 +61,7 @@ function createQuestionEpic(action$, state$, { window }) {
${projectFormValues ${projectFormValues
?.map(([key, val]) => `${key}: ${val}\n`) ?.map(([key, val]) => `${key}: ${val}\n`)
?.join('') || filesToMarkdown(files)} ?.join('') || filesToMarkdown(files)}
\n
${endingText}` ${endingText}`
); );