Don't trim whitespace start of story string

This commit is contained in:
Cohee 2024-01-03 23:47:32 +02:00
parent 337968f20c
commit 5ca909ab13
1 changed files with 1 additions and 1 deletions

View File

@ -1849,7 +1849,7 @@ export function renderStoryString(params) {
output = substituteParams(output, params.user, params.char);
// remove leading whitespace
output = output.trimStart();
// output = output.trimStart();
// add a newline to the end of the story string if it doesn't have one
if (output.length > 0 && !output.endsWith('\n')) {