Merge branch 'feature/game-achievements' into chore/test-preview

This commit is contained in:
Zamitto 2024-10-03 21:29:33 -03:00
commit 0895e9ec72

View file

@ -8,6 +8,8 @@ interface AchievementInfo {
iconUrl: string;
}
const NOTIFICATION_TIMEOUT = 4000;
export function Achievement() {
const { t } = useTranslation("achievement");
@ -77,7 +79,7 @@ export function Achievement() {
cancelAnimationFrame(achievementAnimation.current);
achievementAnimation.current = requestAnimationFrame(
function animateLock(time) {
if (time - zero > 2500) {
if (time - zero > NOTIFICATION_TIMEOUT) {
zero = performance.now();
setAchievements((ach) => ach.slice(1));
}