bancorprotocol / carbon-app

https://app.carbondefi.xyz
MIT License
23 stars 14 forks source link

[SENTRY] Failed to execute 'animate' on 'Element': duration must be non-negative or auto #1289

Open tiagofilipenunes opened 1 month ago

tiagofilipenunes commented 1 month ago

Reporting this error from Sentry:

TypeError: Failed to execute 'animate' on 'Element': duration must be non-negative or auto

In src/components/activity/ActivityCountDown.tsx, the duration-delta can be negative for some users.

  const delta = Date.now() - beforeFinished;
  return element?.animate(keyframes, {
    duration: duration - delta,
    fill: 'forwards',
  });