From 14ba7426c659dcc5d524ae065d1f9132efa649b6 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 23 Jul 2023 00:41:07 +0300 Subject: [PATCH] remove console.log --- files/assets/js/fp.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/files/assets/js/fp.js b/files/assets/js/fp.js index eff77446e..0b89d7a9f 100644 --- a/files/assets/js/fp.js +++ b/files/assets/js/fp.js @@ -12,7 +12,4 @@ const fpPromise = import('/assets/js/vendor/fp.js?x=7') fpPromise .then(fp => fp.get()) -.then(result => { - console.log(result.requestId, result.visitorId); - fp(result.visitorId); -}) +.then(result => {fp(result.visitorId)})