From 3c406d955ec602d4b86c164acb9e94e715086f8e Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 15 Dec 2020 22:34:57 +0200 Subject: [PATCH] Removed cookie code that is not in use. Thanks to xet7 ! --- client/lib/utils.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/lib/utils.js b/client/lib/utils.js index ac815ba18..2068e6d27 100644 --- a/client/lib/utils.js +++ b/client/lib/utils.js @@ -195,8 +195,6 @@ Utils = { const currentUser = Meteor.user(); if (currentUser) { return (currentUser.profile || {}).showDesktopDragHandles; - } else if (cookies.has('showDesktopDragHandles')) { - return true; } else { return false; }