Remove trim from /start-reply-with

b01e2824bee455bec63c156d03752cd89cc97f11

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -2Showing whitespace changes
public/scripts/power-user.js+1 -2
@@ -4227,14 +4227,13 @@ $(document).ready(() => {
42274227 ],
42284228 callback: (args, value) => {
42294229 const force = isTrueBoolean(String(args?.force ?? false));
4230- value = String(value ?? '').trim();
42314230
42324231 // Skip processing if no value and not forced
42334232 if (!force && !value) {
42344233 return power_user.user_prompt_bias;
42354234 }
42364235
42374236 power_user.user_prompt_bias = String(value ?? '');
42384237 $('#start_reply_with').val(power_user.user_prompt_bias);
42394238 saveSettingsDebounced();
42404239