Compare commits

..

11 commits

Author SHA1 Message Date
be712b08f4 Fix linting
All checks were successful
Test / build (push) Successful in 46s
2025-05-04 10:59:05 +01:00
fd803a0433 Update tests 2025-05-04 10:57:18 +01:00
78963d6b7c WIP: Start of drop command tests
Some checks failed
Test / build (push) Failing after 46s
2025-04-24 19:56:07 +01:00
4ff8d15e2c Update yarn.lock 2025-04-24 19:15:51 +01:00
01dec14b6c Merge branch 'develop' into feature/CD-415 2025-04-24 19:15:08 +01:00
f32a39331d Plan tests
Some checks failed
Test / build (push) Failing after 40s
2025-04-07 18:42:47 +01:00
f9ab6c126e Fix existing tests 2025-04-07 18:11:01 +01:00
673f0d0810 Remove restriction that the last drop can only be claimed by the user who dropped it
Some checks failed
Test / build (push) Failing after 38s
2025-04-04 19:03:54 +01:00
2ab3ea1105 Update PurgeClaims timer to purge after 2 minutes 2025-04-04 19:03:21 +01:00
aafcfd664a Update the time until anyone can claim the card to 2 minutes 2025-04-04 18:56:58 +01:00
f98f15b06a Update drop mechanic to take currency on drop instead of claim 2025-04-04 18:56:13 +01:00

View file

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