We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86e563d commit 738bac3Copy full SHA for 738bac3
packages/uplim-info-gmail/src/main.ts
@@ -16,7 +16,7 @@ function main() {
16
const text = createMessage(message);
17
18
const cutText =
19
- text.length > 2000 ? `${text.substring(0, 1995)}...` : text;
+ text.length > 1950 ? `${text.substring(0, 1950)}...` : text;
20
21
// biome-ignore lint/style/useTemplate: エスケープめっちゃ必要でむしろ読みにくくなるので
22
const codeBlock = "```\n" + cutText + "\n```";
0 commit comments