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]