From 16a857927286cf82c9c766d4cec3d5ef9d4fdd5a Mon Sep 17 00:00:00 2001 From: Koper Date: Wed, 25 Oct 2023 15:17:34 +0100 Subject: [PATCH] Removed console.log --- www/app/lib/utils.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/www/app/lib/utils.ts b/www/app/lib/utils.ts index 43ed8bf8..6b72ddea 100644 --- a/www/app/lib/utils.ts +++ b/www/app/lib/utils.ts @@ -101,8 +101,6 @@ export const generateHighContrastColor = ( backgroundColor: [number, number, number] | null = null, ) => { const hash = murmurhash3_32_gc(name); - console.log(name, hash); - let red = (hash & 0xff0000) >> 16; let green = (hash & 0x00ff00) >> 8; let blue = hash & 0x0000ff;