From 5f46c8485045b93a05093c6277bb14b3b0cfc91b Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Wed, 18 Jan 2023 20:52:28 +0100 Subject: [PATCH] remove console.log --- app/javascript/retrospring/utilities/theme.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/javascript/retrospring/utilities/theme.ts b/app/javascript/retrospring/utilities/theme.ts index 79048269..7ee601b8 100644 --- a/app/javascript/retrospring/utilities/theme.ts +++ b/app/javascript/retrospring/utilities/theme.ts @@ -32,7 +32,6 @@ export const getDecimalTripletsFromHex = (hex: string): string => { } export const getIntegerFromHexColor = (hex: string): number => { - console.log(hex, hex.substr(1, 6), parseInt(hex.substr(1, 6), 16)); return parseInt(hex.substr(1, 6), 16); }