Skip to content

Commit 24a344e

Browse files
committed
Clean up
1 parent 06a80d5 commit 24a344e

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

packages/backend/src/html/htmlDefaultBuilder.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ export class HtmlDefaultBuilder {
122122

123123
commonShapeStyles(): this {
124124
if ("fills" in this.node) {
125-
console.log("node is", this.node);
126125
this.applyFillsToStyle(
127126
this.node.fills,
128127
this.node.type === "TEXT" ? "text" : "background",
@@ -261,8 +260,6 @@ export class HtmlDefaultBuilder {
261260
if (isAbsolutePosition) {
262261
const { x, y } = getCommonPositionValue(node, this.settings);
263262

264-
console.log("for node", node.name, x, y);
265-
266263
this.addStyles(
267264
formatWithJSX("left", isJSX, x),
268265
formatWithJSX("top", isJSX, y),

packages/backend/src/html/htmlMain.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,6 @@ const convertNode = (settings: HTMLSettings) => async (node: SceneNode) => {
400400
return htmlWrapSVG(altNode, settings);
401401
}
402402
}
403-
console.log("[convert] node is", node);
404403

405404
switch (node.type) {
406405
case "RECTANGLE":

0 commit comments

Comments
 (0)