diff --git a/packages/f2/src/components/interval/view/polar.tsx b/packages/f2/src/components/interval/view/polar.tsx index 9434b7ce9..ad504549f 100644 --- a/packages/f2/src/components/interval/view/polar.tsx +++ b/packages/f2/src/components/interval/view/polar.tsx @@ -25,16 +25,19 @@ export default (props) => { r: yMax, ...shape, }} - animation={deepMix({ - update: { - easing: 'linear', - duration: 450, - property: ['x', 'y', 'startAngle', 'endAngle', 'r0', 'r'], + animation={deepMix( + { + update: { + easing: 'linear', + duration: 450, + property: ['x', 'y', 'startAngle', 'endAngle', 'r0', 'r'], + }, }, - })} + animation + )} /> ); - }, animation)} + })} ); })}