feat: Remove trailing characters in terminal presentation

This commit is contained in:
Myzel394 2024-11-25 16:05:55 +01:00
parent 1e7bd9a3e1
commit fe33cec725
No known key found for this signature in database
GPG Key ID: ED20A1D1D423AF3F

View File

@ -20,6 +20,6 @@ export default async function render(
case "browser":
return context.html(content);
case "terminal":
return context.text(content);
return context.text(content.trimEnd());
}
}