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:
@@ -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}`
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user