fix: fix flickering?

This commit is contained in:
EETagent 2022-11-24 14:15:32 +01:00
parent 1af6592c71
commit c399dd210b

View file

@ -11,7 +11,7 @@
const dashAnimationStart = () => {
dashAnimationInterval = setInterval(() => {
dashAnimationProgress += 1;
if (dashAnimationProgress == 100) {
if (dashAnimationProgress == 20) {
dashAnimationProgress = 0;
}
}, 30);