diff --git a/framework/core/js/src/common/components/Badge.tsx b/framework/core/js/src/common/components/Badge.tsx index 8367c13bd..e145979ed 100644 --- a/framework/core/js/src/common/components/Badge.tsx +++ b/framework/core/js/src/common/components/Badge.tsx @@ -26,7 +26,6 @@ export interface IBadgeAttrs extends ComponentAttrs { */ export default class Badge extends Component { view() { - console.log(this.attrs); const { type, icon: iconName, label, color, style = {}, ...attrs } = this.attrs; const className = classList('Badge', [type && `Badge--${type}`], attrs.className, textContrastClass(color));