update: remove debug log

This commit is contained in:
Vick Scarlet
2026-08-16 18:33:39 +08:00
parent fca4b7b557
commit da997b7a8e
5 changed files with 1 additions and 8 deletions
-2
View File
@@ -16,7 +16,6 @@ export function ToastAchvContainer() {
reverseOrder: true,
gutter: 8,
})
console.log('toast offset', toast.id, offset)
return (
<div
className={`toast-item ${toast.visible ? 'visible' : 'hidden'}`}
@@ -24,7 +23,6 @@ export function ToastAchvContainer() {
ref={el => {
if (el && typeof toast.height !== 'number') {
const height = el.getBoundingClientRect().height
console.log('toast height', toast.id, height)
updateHeight(toast.id, height)
}
}}