diff --git a/__tests__/html/htmlMain.test.ts b/__tests__/html/htmlMain.test.ts index d8b18092..2e2bbb27 100644 --- a/__tests__/html/htmlMain.test.ts +++ b/__tests__/html/htmlMain.test.ts @@ -144,7 +144,7 @@ describe("HTML Main", () => { frameNode.name = "this is the InPuT"; expect(htmlMain([frameNode])).toEqual( - ' placeholder="username"' + '' ); }); diff --git a/src/html/htmlMain.ts b/src/html/htmlMain.ts index e9bd7455..d2b74b25 100644 --- a/src/html/htmlMain.ts +++ b/src/html/htmlMain.ts @@ -204,7 +204,7 @@ export const htmlContainer = ( .border(node); if (isInput) { - return `\n${children}`; + return `\n`; } if (builder.style || additionalStyle) {