From 3cf92ee51e4cb28191e590f9f991468bd262ec06 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 29 Mar 2022 12:34:41 +0300 Subject: [PATCH] shit --- src/components/status/status.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/status/status.js b/src/components/status/status.js index 5ccb4a03d..8b8bc291b 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -69,7 +69,6 @@ const controlledOrUncontrolledGetters = list => list.reduce((res, name) => { const controlledName = `controlled${camelized}` const uncontrolledName = `uncontrolled${camelized}` res[name] = function () { - debugger console.log(this) console.log(Object.getOwnPropertyDescriptor(this, toggle)) return (Object.getOwnPropertyDescriptor(this, toggle) && this[toggle]) ? this[controlledName] : this[uncontrolledName]