Fix Requirement overflow

This commit is contained in:
Michael K
2024-02-21 18:08:42 -05:00
parent 70c8a3dde8
commit a2efa0d289

View File

@@ -86,7 +86,7 @@ const newBodyNode = (parentNode, id, txts, yStart) => {
// );
let currentRow = 0;
const charLimit = 30;
const charLimit = 24;
let wrappedTxts = [];
txts.forEach((textStr) => {
let currentTextLen = textStr.length;