chore: remove console.log()

Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
This commit is contained in:
Vinayak Kulkarni 2023-01-05 22:36:09 +05:30
parent 4b7f41d620
commit a776d5cab1
No known key found for this signature in database
GPG key ID: B8C8194CED989C08

View file

@ -475,7 +475,6 @@ const drawPath = (ctx, path, query, z) => {
ctx.fillStyle = splitPaths
.find((x) => x.startsWith('fill:'))
.replace('fill:', '');
console.log('path has fill', ctx.fillStyle);
}
ctx.fill();
}
@ -494,7 +493,6 @@ const drawPath = (ctx, path, query, z) => {
lineWidth = Number(
splitPaths.find((x) => x.startsWith('width:')).replace('width:', ''),
);
console.log('line width', lineWidth);
}
// Get border width from query and fall back to 10% of line width
const borderWidth =