refactor: remove log
This commit is contained in:
parent
69a3a3b060
commit
6cc8a59dc7
@ -194,9 +194,6 @@ const ToastTemplate = ({
|
|||||||
transitionDuration = ref.current
|
transitionDuration = ref.current
|
||||||
.computedStyleMap()
|
.computedStyleMap()
|
||||||
.get("transition-duration") as { value: number; unit: string };
|
.get("transition-duration") as { value: number; unit: string };
|
||||||
console.log(
|
|
||||||
`calculated transition duration via computedStyleMap ${transitionDuration}`
|
|
||||||
);
|
|
||||||
} else {
|
} else {
|
||||||
const style = /(\d+(\.\d+)?)(.+)/.exec(
|
const style = /(\d+(\.\d+)?)(.+)/.exec(
|
||||||
window.getComputedStyle(ref.current).transitionDuration
|
window.getComputedStyle(ref.current).transitionDuration
|
||||||
@ -207,9 +204,6 @@ const ToastTemplate = ({
|
|||||||
unit: style[3] ?? style[2] ?? "s",
|
unit: style[3] ?? style[2] ?? "s",
|
||||||
}
|
}
|
||||||
: null;
|
: null;
|
||||||
console.log(
|
|
||||||
`calculated transition duration via getComputedStyle ${JSON.stringify(transitionDuration)}`
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
if (!transitionDuration) {
|
if (!transitionDuration) {
|
||||||
delete toasts[id];
|
delete toasts[id];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user