Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeFinch committed Jun 11, 2024
1 parent 33fd863 commit 7577f27
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ export async function applySizingValuesOnNode(
values: MapValuesToTokensResult,
baseFontSize: string,
) {
console.log('applySizingValuesOnNode', node, data, values, baseFontSize);

// SIZING: BOTH
// When given just `size` we apply it to width and height
if (
Expand Down Expand Up @@ -78,7 +76,6 @@ export async function applySizingValuesOnNode(
&& isPrimitiveValue(values.maxWidth)
&& !(await tryApplyVariableId(node, 'maxWidth', data.maxWidth))
) {
console.log()
node.maxWidth = transformValue(String(values.maxWidth), 'sizing', baseFontSize);
}

Expand Down

0 comments on commit 7577f27

Please sign in to comment.