Compare commits

..

12 commits

Author SHA1 Message Date
a29cd2ed20 Fix linting
All checks were successful
Test / build (push) Successful in 41s
2025-05-04 11:01:57 +01:00
f903847204 Update tests 2025-05-04 11:01:57 +01:00
d457a87fff WIP: Start of drop command tests 2025-05-04 11:01:57 +01:00
c08401084b Plan tests 2025-05-04 11:01:57 +01:00
e76864eb29 Fix existing tests 2025-05-04 11:01:57 +01:00
98ba35b6c1 Remove restriction that the last drop can only be claimed by the user who dropped it 2025-05-04 11:01:57 +01:00
5f64f15ffa Update PurgeClaims timer to purge after 2 minutes 2025-05-04 11:01:57 +01:00
6ed4c5084b Update the time until anyone can claim the card to 2 minutes 2025-05-04 11:01:57 +01:00
99b0caa7e4 Update drop mechanic to take currency on drop instead of claim 2025-05-04 11:01:57 +01:00
0669dfb0d0 Fix linting
All checks were successful
Deploy To Stage / build (push) Successful in 49s
Deploy To Stage / deploy (push) Successful in 15s
2025-04-25 09:17:36 +01:00
d8ed64e701 Merge branch 'main' into develop
Some checks failed
Deploy To Stage / build (push) Failing after 41s
Deploy To Stage / deploy (push) Has been skipped
2025-04-25 09:14:38 +01:00
812e36329c Disable error for series helper temporarily
All checks were successful
Deploy To Production / build (push) Successful in 30s
Deploy To Production / deploy (push) Successful in 14s
2025-04-25 09:14:30 +01:00

View file

@ -68,8 +68,9 @@ export default class ImageHelper {
ctx.drawImage(image, imageX, imageY);
}
catch (e) {
AppLogger.CatchError("ImageHelper", e);
catch {
// TODO: Enable once we've investigated a fix
//AppLogger.CatchError("ImageHelper", e);
}
}