Skip to content

Commit

Permalink
Removed console.log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanR712 committed May 9, 2024
1 parent a2b3bd5 commit 337ddd2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/SharedToolUtils/DrawUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ export function drawAtom(thisAtom: AtomNode, color: string, currentAtom: Boolean
* @param color Incoming color string.
*/
export function drawGuidelines(original: Point, current: Point, color: string): void {
console.log("Drawing guidelines");
ctx.beginPath();
ctx.strokeStyle = color;
const dx: number = original.x - current.x;
Expand Down

0 comments on commit 337ddd2

Please sign in to comment.