Browse Source

fix: dot count

happy
二货机器人 2 years ago
parent
commit
7d243d23a6
  1. 2
      components/theme/themesToken/happy/wave.tsx

2
components/theme/themesToken/happy/wave.tsx

@ -76,7 +76,7 @@ function HappyWave({ target, token, onFinish }: HappyWaveProps) {
const offsetAngle = Math.random() * 360;
setDots(
new Array(DOT_COUNT).fill(null).map((_, index) => {
new Array(dotCount).fill(null).map((_, index) => {
const rotate: number = 360 / dotCount;
const randomAngle = offsetAngle + rotate * index;

Loading…
Cancel
Save