Skip to content

Commit 10950d0

Browse files
authored
Apply suggestions from code review
1 parent 5e33bb9 commit 10950d0

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/components/ui/buttons/Button.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,18 +102,13 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
102102
},
103103
ref
104104
) => {
105-
console.log("🚀 ~ variant:", variant)
106105
const handleOnClick = (e: React.MouseEvent<HTMLButtonElement>) => {
107106
toId && scrollIntoView(toId)
108107
customEventOptions && trackCustomEvent(customEventOptions)
109108

110109
onClick?.(e)
111110
}
112111

113-
console.log(
114-
"🚀 ~ buttonVariants({ variant, size, className }):",
115-
buttonVariants({ variant, size, className })
116-
)
117112
const Comp = asChild ? Slot : "button"
118113
return (
119114
<Comp

0 commit comments

Comments
 (0)