diff options
author | Miodec <[email protected]> | 2023-03-09 00:18:52 +0100 |
---|---|---|
committer | Miodec <[email protected]> | 2023-03-09 12:04:02 +0100 |
commit | d8344672eb8b8ef49bebdea6c523eb4053eb9a5e (patch) | |
tree | f5114e429fc3166a8f3ecffee88576587e084d2f | |
parent | 8b21be43267762bad34af4f5bac21ff546aab5a1 (diff) | |
download | monkeytype-d8344672eb8b8ef49bebdea6c523eb4053eb9a5e.tar.gz monkeytype-d8344672eb8b8ef49bebdea6c523eb4053eb9a5e.zip |
removed console log
-rw-r--r-- | frontend/src/ts/utils/misc.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/src/ts/utils/misc.ts b/frontend/src/ts/utils/misc.ts index 7b1e2ba00..7624ffc1f 100644 --- a/frontend/src/ts/utils/misc.ts +++ b/frontend/src/ts/utils/misc.ts @@ -254,7 +254,6 @@ export function blendTwoHexColors(color1: string, color2: string): string { a: 0.5, }; const blended = normalBlend(rgba1, rgba2); - console.log(blended); return rgbToHex(blended.r, blended.g, blended.b); } else { return "#000000"; |