From 3fa3de1c2b90d441fe42c30a8ea7bac93b960811 Mon Sep 17 00:00:00 2001 From: MTG2000 Date: Thu, 24 Mar 2022 17:35:08 +0200 Subject: [PATCH] chore: remove extra logs --- functions/graphql/types/category.js | 1 - 1 file changed, 1 deletion(-) diff --git a/functions/graphql/types/category.js b/functions/graphql/types/category.js index f750708..ae2edd4 100644 --- a/functions/graphql/types/category.js +++ b/functions/graphql/types/category.js @@ -55,7 +55,6 @@ const allCategoriesQuery = extendType({ } } }) - console.log(categories); categories.sort((c1, c2) => c2._count.project - c1._count.project) return categories; }